-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
229 lines (228 loc) · 6.96 KB
/
docker-compose.yml
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
version: '3.8'
networks:
cenobridge:
external:
name: host
caddy:
external:
name: host
volumes:
bridge_storage:
caddy_data:
external: true
caddy_config:
external: true
synapse_data:
external: true
mailadm_db:
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:latest
volumes:
- caddy_data:/data
- caddy_config:/config
- type: bind
source: /var/www/dcomms
target: /www
networks:
- caddy
environment:
DWEB_DOMAIN: "${DWEB_DOMAIN}"
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.53.0
entrypoint:
- sh
- -c
- chown -R 991:991 /data ; /start.py
volumes:
- synapse_data:/data
networks:
- caddy
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: 512M
# element is a matrix web GUI running as a service
element:
image: vectorim/element-web:v1.10.4
networks:
- caddy
depends_on:
- caddy
- synapse
configs:
- source: element-json-config
target: /app/config.json
- source: element-nginx-config
target: /etc/nginx/conf.d/default.conf
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: 512M
# 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: 512M
# 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: 512M
configs:
caddy-caddyfile-config:
template_driver: golang
file: ./conf/caddy/Caddyfile.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