File tree Expand file tree Collapse file tree 6 files changed +45
-4
lines changed Expand file tree Collapse file tree 6 files changed +45
-4
lines changed Original file line number Diff line number Diff line change @@ -95,9 +95,9 @@ The following steps describe how to set up the application system:
95
95
96
96
` ` ` bash
97
97
cd /srv \
98
- && wget https://raw.githubusercontent.com/openscript-ch/quassel/refs/heads/main/docs/ examples/docker-compose.yaml \
99
- && wget https://raw.githubusercontent.com/openscript-ch/quassel/refs/heads/main/docs/ examples/traefik.yaml \
100
- && wget https://raw.githubusercontent.com/openscript-ch/quassel/refs/heads/main/docs/ examples/.env.example
98
+ && wget https://raw.githubusercontent.com/openscript-ch/quassel/refs/heads/main/examples/public /docker-compose.yaml \
99
+ && wget https://raw.githubusercontent.com/openscript-ch/quassel/refs/heads/main/examples/public /traefik.yaml \
100
+ && wget https://raw.githubusercontent.com/openscript-ch/quassel/refs/heads/main/examples/public /.env.example
101
101
` ` `
102
102
103
103
1. Rename environment file and fill out the gaps ` mv .env.example .env`
@@ -144,7 +144,7 @@ The following opinionated steps describe to push data to a Grafana instance via
144
144
1. Copy the Grafana Agent configuration example:
145
145
146
146
` ` ` bash
147
- wget https://raw.githubusercontent.com/openscript-ch/quassel/refs/heads/main/docs/ examples/grafana-agent.yaml
147
+ wget https://raw.githubusercontent.com/openscript-ch/quassel/refs/heads/main/examples/public /grafana-agent.yaml
148
148
` ` `
149
149
150
150
1. Replace the ` remote_write` url and token in ` grafana-agent.yaml` .
Original file line number Diff line number Diff line change
1
+ name : " quassel"
2
+
3
+ volumes :
4
+ storage :
5
+ database :
6
+ letsencrypt :
7
+
8
+ services :
9
+ backend :
10
+ image : quassel-backend:latest
11
+ volumes :
12
+ - storage:/app/storage
13
+ depends_on :
14
+ - database
15
+ ports :
16
+ - " 3000:4000"
17
+ environment :
18
+ LANG : C.UTF-8
19
+ CORS_ORIGIN : http://localhost:4001
20
+ SESSION_SECRET : secret
21
+ SESSION_SALT : salt
22
+ DATABASE_HOST : database
23
+ DATABASE_PASSWORD : secret
24
+
25
+ database :
26
+ image : postgres:17.0-alpine
27
+ volumes :
28
+ - database:/var/lib/postgresql/data
29
+ environment :
30
+ POSTGRES_PASSWORD : " secret"
31
+
32
+ frontend :
33
+ image : quassel-frontend:latest
34
+ ports :
35
+ - " 80:4001"
36
+ environment :
37
+ API_URL : http://localhost:4000
38
+ mockup :
39
+ image : quassel-mockup:latest
40
+ ports :
41
+ - " 80:4002"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments