-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
234 lines (223 loc) · 5.41 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
230
231
232
233
234
version: '3'
services:
gromox-db:
image: mariadb:10
container_name: gromox-db
environment:
MARIADB_ROOT_PASSWORD: Lu3s3WmFxXghtLwJnuqN
MARIADB_DATABASE: grommunio
MARIADB_USER: grommunio
MARIADB_PASSWORD: Lu3s3WmFxXghtLwJnuqN
volumes:
- gromox_mysql_data:/var/lib/mysql
restart: on-failure
healthcheck:
test: mariadb --host=localhost --user=$${MARIADB_USER} --password=$${MARIADB_PASSWORD} -e 'SELECT 1;'
interval: 30s
timeout: 10s
retries: 5
networks:
mynet:
aliases:
- gromox-db
chat-db:
image: mariadb:10
container_name: chat-db
environment:
MARIADB_ROOT_PASSWORD: Lu3s3WmFxXghtLwJnuqN
MARIADB_DATABASE: grochat
MARIADB_USER: grochat
MARIADB_PASSWORD: grommunio
volumes:
- chat_mysql_data:/var/lib/mysql
restart: on-failure
healthcheck:
test: mariadb --host=localhost --user=$${MARIADB_USER} --password=$${MARIADB_PASSWORD} -e 'SELECT 1;'
interval: 30s
timeout: 10s
retries: 5
networks:
mynet:
aliases:
- chat-db
files-db:
image: mariadb:10
container_name: files-db
environment:
MARIADB_ROOT_PASSWORD: Lu3s3WmFxXghtLwJnuqN
MARIADB_DATABASE: grofiles
MARIADB_USER: grofiles
MARIADB_PASSWORD: grommunio
volumes:
- files_mysql_data:/var/lib/mysql
restart: on-failure
healthcheck:
test: mariadb --host=localhost --user=$${MARIADB_USER} --password=$${MARIADB_PASSWORD} -e 'SELECT 1;'
interval: 30s
timeout: 10s
retries: 5
networks:
mynet:
aliases:
- files-db
office-db:
image: mariadb:10
container_name: office-db
environment:
MARIADB_ROOT_PASSWORD: Lu3s3WmFxXghtLwJnuqN
MARIADB_DATABASE: groffice
MARIADB_USER: groffice
MARIADB_PASSWORD: grommunio
volumes:
- office_mysql_data:/var/lib/mysql
restart: on-failure
healthcheck:
test: mariadb --host=localhost --user=$${MARIADB_USER} --password=$${MARIADB_PASSWORD} -e 'SELECT 1;'
interval: 30s
timeout: 10s
retries: 5
networks:
mynet:
aliases:
- office-db
archive-db:
image: mariadb:10
container_name: archive-db
environment:
MARIADB_ROOT_PASSWORD: Lu3s3WmFxXghtLwJnuqN
MARIADB_DATABASE: groarchive
MARIADB_USER: groarchive
MARIADB_PASSWORD: grommunio
volumes:
- archive_mysql_data:/var/lib/mysql
restart: on-failure
healthcheck:
test: mariadb --host=localhost --user=$${MARIADB_USER} --password=$${MARIADB_PASSWORD} -e 'SELECT 1;'
interval: 30s
timeout: 10s
retries: 5
networks:
mynet:
aliases:
- archive-db
gromox-core:
build:
context: ./
dockerfile: ./gromox-core/Dockerfile
restart: unless-stopped
runtime: sysbox-runc
cap_add:
- SYS_ADMIN
- SYS_RESOURCE
volumes:
- opensuse-data:/data
- variables_data:/home/vars
- cert_data:/etc/grommunio-common/ssl
ports:
- "2222:22" # SSH
- "8443:8443" # Grommunio Admin
- "443:443" # Grommunio Web
- "993:993" # Grommunio IMAP
- "80:80" # Letsencrypt challenges mainly
tty: true
stdin_open: true
networks:
mynet:
aliases:
- gromox-core
env_file:
- var.env
depends_on:
gromox-db:
condition: service_healthy
chat-db:
condition: service_healthy
files-db:
condition: service_healthy
office-db:
condition: service_healthy
archive-db:
condition: service_healthy
gromox-archive:
build:
context: ./
dockerfile: ./gromox-archive/Dockerfile
restart: unless-stopped
runtime: sysbox-runc
cap_add:
- SYS_ADMIN
- SYS_RESOURCE
volumes:
- opensuse-data:/data
- variables_data:/home/vars
- cert_data:/etc/grommunio-common/ssl
tty: true
stdin_open: true
networks:
mynet:
aliases:
- gromox-archive
env_file:
- var.env
depends_on:
gromox-db:
condition: service_healthy
archive-db:
condition: service_healthy
gromox-core:
condition: service_started
gromox-office:
build:
context: ./
dockerfile: ./gromox-office/Dockerfile
restart: unless-stopped
runtime: sysbox-runc
cap_add:
- SYS_ADMIN
- SYS_RESOURCE
volumes:
- opensuse-data:/data
- variables_data:/home/vars
- cert_data:/etc/grommunio-common/ssl
tty: true
stdin_open: true
networks:
mynet:
aliases:
- gromox-office
env_file:
- var.env
depends_on:
gromox-db:
condition: service_healthy
files-db:
condition: service_healthy
office-db:
condition: service_healthy
gromox-core:
condition: service_started
networks:
mynet:
driver: bridge
enable_ipv6: true
ipam:
config:
- subnet: 17.18.0.0/24
gateway: 17.18.0.1
- subnet: "2001:db8:1::/64"
gateway: "2001:db8:1::1" # IPv6 gateway
volumes:
gromox_mysql_data:
chat_mysql_data:
files_mysql_data:
office_mysql_data:
archive_mysql_data:
opensuse-data:
driver: local
driver_opts:
type: none
o: bind
device: ${PWD}/opensuse-data
variables_data:
external: true
cert_data: