-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
448 lines (440 loc) · 12.2 KB
/
Copy pathdocker-compose.yml
File metadata and controls
448 lines (440 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
version: '3.8'
networks:
cenobridge:
external:
name: host
caddy:
external:
name: host
mast-int:
volumes:
bridge_storage:
caddy_data:
external: true
caddy_config:
external: true
synapse_data:
external: true
mailadm_db:
element_data:
synapse_db:
mastodon_public:
mastodon_redis:
mastodon_db:
mau_data:
services:
# ceno-client "bridge" service is below
bridge:
image: equalitie/ceno-client:latest
networks:
- cenobridge
volumes:
- bridge_storage:/var/opt/ouinet
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackrole == bridge
max_replicas_per_node: 1
resources:
limits:
memory: 512M
# caddy acts as a reverse proxy for synapse (matrix)
caddy:
image: caddy:2.6.4
volumes:
- caddy_data:/data
- caddy_config:/config
- type: bind
source: /var/www
target: /www
# - mastodon_public:/srv/mastodon/public:ro
- type: volume
source: mastodon_public
target: /srv/mastodon/public
networks:
- caddy
environment:
DWEB_DOMAIN: "${DWEB_DOMAIN}"
DWEB_ONION: "${DWEB_ONION}"
configs:
- source: caddy-caddyfile-config
target: /etc/caddy/Caddyfile
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 512M
# synapse is a matrix homeserver running as a service
synapse:
image: matrixdotorg/synapse:v1.123.0
entrypoint:
- sh
- -c
- chown -R 991:991 /data ; /start.py
volumes:
- synapse_data:/data
networks:
- caddy
healthcheck:
test: ["NONE"]
environment:
SYNAPSE_CONFIG_DIR: "/data"
SYNAPSE_DATA_DIR: "/data"
TZ: "UA"
depends_on:
- caddy
configs:
- source: synapse-homeserver-config
target: /data/homeserver.yaml
uid: '991'
gid: '991'
mode: 0644
- source: synapse-signingkey-config
target: /data/matrix.${DWEB_DOMAIN}.signing.key
uid: '991'
gid: '991'
mode: 0644
- source: synapse-logconfig-config
target: /data/matrix.${DWEB_DOMAIN}.log.config
uid: '991'
gid: '991'
mode: 0644
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 6G
synapse-pg:
restart: always
image: postgres:14-alpine
healthcheck:
test: ['CMD', 'pg_isready', '-U', 'synapse']
environment:
- 'POSTGRES_USER=synapse'
- 'POSTGRES_HOST_AUTH_METHOD=trust'
- 'POSTGRES_INITDB_ARGS=--encoding="UTF8" --lc-collate="C" --lc-ctype="C"'
volumes:
- synapse_db:/var/lib/postgresql/data
depends_on:
- caddy
- synapse
networks:
- caddy
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 512M
# element is a matrix web GUI running as a service
element:
image: vectorim/element-web:v1.11.91
networks:
- caddy
environment:
- 'ELEMENT_WEB_PORT=8001'
depends_on:
- caddy
- synapse
volumes:
- element_data:/app
configs:
- source: element-json-config
target: /app/config.json
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 512M
# postfix is running as a part of the delta chat service
postfix:
image: keith/deltachat-mailadm-postfix:v0.0.3
entrypoint:
- sh
- -c
- "postconf -M submission/inet=\"submission inet n - n - - smtpd\" && postconf -P submission/inet/syslog_name=postfix/submission && postconf -P submission/inet/smtpd_tls_security_level=encrypt && postconf -P submission/inet/smtpd_sasl_type=dovecot && postconf -P submission/inet/smtpd_sasl_path=inet:localhost:12345 && postconf -P submission/inet/smtpd_sasl_auth_enable=yes && postconf \"myhostname=${DWEB_DOMAIN}\" && postconf \"mydestination=\" && postconf \"virtual_mailbox_domains=${DWEB_DOMAIN}\" && postconf \"virtual_transport=lmtp:localhost:24\" && postconf \"virtual_mailbox_base=/home/vmail\" && postconf \"virtual_mailbox_maps=texthash:/var/lib/mailadm/virtual_mailboxes\" && postconf \"maillog_file=/dev/stdout\" && postconf \"smtpd_tls_cert_file=/certs/fullchain.pem\" && postconf \"smtpd_tls_key_file=/certs/privkey.pem\" && postfix start-fg"
volumes:
- mailadm_db:/var/lib/mailadm/
- /var/lib/docker/volumes/caddy_data/_data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/${DWEB_DOMAIN}/${DWEB_DOMAIN}.crt:/certs/fullchain.pem
- /var/lib/docker/volumes/caddy_data/_data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/${DWEB_DOMAIN}/${DWEB_DOMAIN}.key:/certs/privkey.pem
environment:
MAIL_DOMAIN: "${DWEB_DOMAIN}"
networks:
- caddy
depends_on:
- caddy
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 128M
# dovecot is running as a part of the delta chat service
dovecot:
image: keith/deltachat-mailadm-dovecot:v0.0.1
volumes:
- mailadm_db:/var/lib/mailadm/
- /var/lib/docker/volumes/caddy_data/_data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/${DWEB_DOMAIN}/${DWEB_DOMAIN}.crt:/certs/fullchain.pem
- /var/lib/docker/volumes/caddy_data/_data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/${DWEB_DOMAIN}/${DWEB_DOMAIN}.key:/certs/privkey.pem
environment:
VMAIL_UID: "${VMAIL_UID}"
VMAIL_GID: "${VMAIL_GID}"
networks:
- caddy
depends_on:
- caddy
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 128M
# mailadm is running as a part of the delta chat service
mailadm:
image: keith/deltachat-mailadm:v0.0.1
entrypoint:
- sh
- -c
- mailadm init --web-endpoint="https://${DWEB_DOMAIN}/new_email" --mail-domain=${DWEB_DOMAIN} --vmail-user=vmail ; mailadm add-token ZMqbnG8P --maxuse 100000 --expiry 999d --token ZMqbnG8P ; gunicorn -b :3691 -w 1 mailadm.app:app
volumes:
- mailadm_db:/var/lib/mailadm/
environment:
MAIL_DOMAIN: "${DWEB_DOMAIN}"
VMAIL_UID: "${VMAIL_UID}"
VMAIL_GID: "${VMAIL_GID}"
WEB_ENDPOINT: "https://${DWEB_DOMAIN}/new_email"
networks:
- caddy
depends_on:
- caddy
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 128M
# mau is a synapse bot we run for news and other things
mau:
image: dock.mau.dev/maubot/maubot:v0.3.1
configs:
- source: mau-config
target: /data/config.yaml
volumes:
- mau_data:/data/
networks:
- caddy
depends_on:
- caddy
- synapse
- element
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 128M
mastodon-pg:
restart: always
image: postgres:14.13-alpine
healthcheck:
test: ['CMD', 'pg_isready', '-U', 'postgres']
environment:
- 'POSTGRES_HOST_AUTH_METHOD=trust'
- 'POSTGRES_USER=postgres'
volumes:
- mastodon_db:/var/lib/postgresql/data
networks:
- mast-int
ports:
- target: 5432
published: 5433
protocol: tcp
mode: host
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 512M
mastodon-redis:
restart: always
image: redis:7.0-alpine
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
env_file: conf/mastodon/${DWEB_DOMAIN}.env.production
volumes:
- mastodon_redis:/data
networks:
- mast-int
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 512M
mastodon-web:
restart: always
image: tootsuite/mastodon:v4.3.3
healthcheck:
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:3000/health || exit 1']
entrypoint:
- bash
- -c
- "/usr/bin/tini -- bundle exec rails server"
env_file: conf/mastodon/${DWEB_DOMAIN}.env.production
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
ports:
- target: 3000
published: 3000
protocol: tcp
mode: host
depends_on:
- mastodon-pg
- mastodon-redis
volumes:
# https://www.digitalocean.com/community/tutorials/how-to-share-data-between-docker-containers
- type: volume
source: mastodon_public
target: /mastodon/public/system
networks:
- mast-int
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 512M
mastodon-streaming:
restart: always
image: tootsuite/mastodon-streaming:v4.3.3
healthcheck:
test: wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1
]
env_file: conf/mastodon/${DWEB_DOMAIN}.env.production
command: node ./streaming
ports:
- target: 4000
published: 4000
protocol: tcp
mode: host
#expose:
#- "4000"
depends_on:
- mastodon-pg
- mastodon-redis
networks:
- mast-int
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 512M
mastodon-sidekiq:
restart: always
image: tootsuite/mastodon:v4.3.3
entrypoint:
- sh
- -c
- "/usr/bin/tini -- bundle exec sidekiq"
healthcheck:
test: ps aux | grep '[s]idekiq\ 6' || false
env_file: conf/mastodon/${DWEB_DOMAIN}.env.production
command: bundle exec sidekiq
depends_on:
- mastodon-pg
- mastodon-redis
volumes:
- type: volume
source: mastodon_public
target: /mastodon/public/system
networks:
- mast-int
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.dwebstackdomain == ${DWEB_DOMAIN}
max_replicas_per_node: 1
resources:
limits:
memory: 512M
configs:
caddy-caddyfile-config:
template_driver: golang
file: ./conf/caddy/Caddyfile.${DWEB_DOMAIN}.tmpl
external: false
synapse-homeserver-config:
file: ./conf/synapse/${DWEB_DOMAIN}.homeserver.yaml
external: false
synapse-signingkey-config:
file: ./conf/synapse/${DWEB_DOMAIN}.signing.key
external: false
synapse-logconfig-config:
file: ./conf/synapse/${DWEB_DOMAIN}.log.config
external: false
element-json-config:
template_driver: golang
file: ./conf/element/$DWEB_DOMAIN.config.json
external: false
element-nginx-config:
template_driver: golang
file: ./conf/element/nginx.conf
external: false
mau-config:
file: ./conf/mau/$DWEB_DOMAIN.config.yaml
external: false