This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
414 lines (414 loc) · 11 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
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
---
version: '3.6'
services:
testrunner:
platform: linux/amd64
image: registry.gitlab.com/ontola/argu:base-pw
env_file:
- ./.env
networks:
default:
volumes:
- type: bind
source: ${PWD}/test/spec
target: /usr/src/app/spec
- type: bind
source: ${PWD}/test/Rakefile
target: /usr/src/app/Rakefile
- type: bind
source: ${PWD}/docker/nginx/ssl
target: /etc/nginx/ssl
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
- /dev/shm:/dev/shm
nginx:
image: nginx:latest
extra_hosts:
- host.docker.internal:${HOST_IP:-host-gateway}
networks:
default:
aliases:
- redirect.argu.localtest
- argu.localtest
ports:
- 443:443
- 80:80
restart: unless-stopped
volumes:
- type: bind
source: ${PWD}/docker/nginx/nginx.conf
target: /etc/nginx/nginx.conf
- type: bind
source: ${PWD}/docker/nginx/ssl
target: /etc/nginx/ssl
postgres:
image: postgis/postgis:14-master
env_file:
- ./.env
volumes:
- pgdata:/var/lib/postgresql/data
ports:
- 5432:5432
restart: unless-stopped
redis:
image: redis:6
ports:
- 6379:6379
restart: unless-stopped
volumes:
- redisdata:/data
elastic:
platform: linux/amd64
image: docker.elastic.co/elasticsearch/elasticsearch:7.10.2
env_file:
- ./.env
environment:
- ES_JAVA_OPTS=-Xms1g -Xmx1g
- discovery.type=single-node
volumes:
- elasticdata:/usr/share/elasticsearch/data
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
ports:
- 9200:9200
- 9300:9300
restart: unless-stopped
mailcatcher:
command:
- mailcatcher
- "--foreground"
- "--ip=0.0.0.0"
- "--smtp-port=1025"
- "--http-port=1080"
image: tophfr/mailcatcher:0.6.5_3
ports:
- 1080:1080
- 1025:1025
restart: unless-stopped
prometheus:
image: prom/prometheus
ports:
- 9090:9090
volumes:
- type: bind
source: ${PWD}/docker/prometheus/prometheus.yml
target: /etc/prometheus/prometheus.yml
- promdata:/prometheus
grafana:
image: grafana/grafana
environment:
- GF_INSTALL_PLUGINS=grafana-clock-panel,grafana-simple-json-datasource,redis-datasource
ports:
- 8888
volumes:
- grafanadata:/var/lib/grafana
- ./docker/grafana/:/etc/grafana/provisioning/
libro_server:
platform: linux/amd64
profiles:
- libro
image: registry.gitlab.com/ontola/argu/libro:${LIBRO_TAG:-latest}
depends_on:
- redis
env_file:
- ./.env
healthcheck:
interval: 10s
test: 'curl -H "Host: argu.localtest" -f http://localhost:3080/link-lib/cache/status'
ports:
- 3001:3080
- 3080:3080
restart: unless-stopped
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- type: bind
source: ./docker/nginx/devproxyCA/cacert.p12
target: /opt/graalvm-ce-java17-21.3.0/lib/security/cacerts
command: java -Djavax.net.ssl.trustStorePassword=password -jar libro.jar
libro_server_dev:
platform: linux/amd64
profiles:
- libro-dev
depends_on:
- redis
build:
context: services/libro-server
dockerfile: Dockerfile-dev
env_file:
- ./.env
environment:
- KTOR_ENV=development
ports:
- 3080:3080
restart: unless-stopped
volumes:
- $HOME/.gradle:/root/.gradle
- ./services/libro-server:/usr/src/app
libro_client:
platform: linux/amd64
profiles:
- libro-dev
build:
context: services/libro-client
dockerfile: Dockerfile-dev
environment:
- LIBRO_VERSION=dev
ports:
- 3001:3001
restart: unless-stopped
volumes:
- ./services/libro-client:/usr/src/app
apex_worker:
platform: linux/amd64
image: registry.gitlab.com/ontola/apex:${APEX_TAG:-latest}
depends_on:
- postgres
- redis
env_file:
- ./.env
environment:
- HOSTNAME=argu.localtest
restart: unless-stopped
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- type: bind
source: ${PWD}/docker/nginx/devproxyCA/cacert.pem
target: ${PWD}/docker/nginx/devproxyCA/cacert.pem
command: bundle exec sidekiq
token_worker:
platform: linux/amd64
image: registry.gitlab.com/ontola/token_service:${TOKEN_TAG:-latest}
depends_on:
- postgres
- redis
env_file:
- ./.env
environment:
- HOSTNAME=argu.localtest
restart: unless-stopped
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- type: bind
source: ${PWD}/docker/nginx/devproxyCA/cacert.pem
target: ${PWD}/docker/nginx/devproxyCA/cacert.pem
command: bundle exec sidekiq - staging
apex:
platform: linux/amd64
profiles:
- apex
image: registry.gitlab.com/ontola/apex:${APEX_TAG:-latest}
depends_on:
- elastic
- postgres
- redis
env_file:
- ./.env
environment:
- HOSTNAME=argu.localtest
- PIDFILE=/tmp/server.pid
healthcheck:
interval: 10s
test: 'curl -H "Host: argu.localtest" -f http://localhost:3000/argu/d/health'
ports:
- 3000:3000
- 1234:1234
- 26166:26168
restart: unless-stopped
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- type: bind
source: ${PWD}/docker/nginx/devproxyCA/cacert.pem
target: ${PWD}/docker/nginx/devproxyCA/cacert.pem
tmpfs:
- /tmp/pids/
apex_dev:
platform: linux/amd64
profiles:
- apex-dev
build:
context: services/apex
dockerfile: Dockerfile-dev
depends_on:
- elastic
- postgres
- redis
env_file:
- ./.env
environment:
- PIDFILE=/tmp/server.pid
ports:
- 3000:3000
- 1234:1234
- 26166:26168
restart: unless-stopped
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- ./services/apex:/usr/src/app
- ${PWD}/docker/nginx/devproxyCA/cacert.pem:${PWD}/docker/nginx/devproxyCA/cacert.pem
tmpfs:
- /tmp/pids/
token:
platform: linux/amd64
profiles:
- token
image: registry.gitlab.com/ontola/token_service:${TOKEN_TAG:-latest}
depends_on:
- postgres
- redis
env_file:
- ./.env
environment:
- HOSTNAME=argu.localtest
- PIDFILE=/tmp/server.pid
healthcheck:
interval: 10s
test: 'apk add curl && curl -H "Host: argu.localtest" -f http://localhost:3003/argu/tokens/d/health'
ports:
- 3003:3003
- 1235:1234
- 26167:26168
restart: unless-stopped
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- type: bind
source: ${PWD}/docker/nginx/devproxyCA/cacert.pem
target: ${PWD}/docker/nginx/devproxyCA/cacert.pem
tmpfs:
- /tmp/pids/
command: ./bin/rails server -b 0.0.0.0 -p 3003
token_dev:
platform: linux/amd64
profiles:
- token-dev
build:
context: services/token_service
dockerfile: Dockerfile-dev
depends_on:
- postgres
- redis
env_file:
- ./.env
environment:
- PIDFILE=/tmp/server.pid
ports:
- 3003:3003
- 1235:1234
- 26167:26168
restart: unless-stopped
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- ./services/token_service:/usr/src/app
- type: bind
source: ${PWD}/docker/nginx/devproxyCA/cacert.pem
target: ${PWD}/docker/nginx/devproxyCA/cacert.pem
tmpfs:
- /tmp/pids/
email:
platform: linux/amd64
profiles:
- email
image: registry.gitlab.com/ontola/email_service:${EMAIL_TAG:-latest}
depends_on:
- postgres
- redis
env_file:
- ./.env
environment:
- HOSTNAME=argu.localtest
- PIDFILE=/tmp/server.pid
healthcheck:
interval: 10s
test: 'apk add curl && curl -H "Host: argu.localtest" -f http://localhost:3002/argu/email/d/health'
ports:
- 3002:3002
- 1236:1234
- 26168:26168
restart: unless-stopped
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- type: bind
source: ${PWD}/docker/nginx/devproxyCA/cacert.pem
target: ${PWD}/docker/nginx/devproxyCA/cacert.pem
tmpfs:
- /tmp/pids/
command: ./bin/rails server -b 0.0.0.0 -p 3002
email_dev:
platform: linux/amd64
profiles:
- email-dev
build:
context: services/email_service
dockerfile: Dockerfile-dev
depends_on:
- postgres
- redis
env_file:
- ./.env
environment:
- PIDFILE=/tmp/server.pid
ports:
- 3002:3002
- 1236:1234
- 26168:26168
extra_hosts:
- libro.svc.cluster.localdev:${HOST_IP:-host-gateway}
- data.svc.cluster.localdev:${HOST_IP:-host-gateway}
- token.svc.cluster.localdev:${HOST_IP:-host-gateway}
- email.svc.cluster.localdev:${HOST_IP:-host-gateway}
volumes:
- ./services/email_service:/usr/src/app
- type: bind
source: ${PWD}/docker/nginx/devproxyCA/cacert.pem
target: ${PWD}/docker/nginx/devproxyCA/cacert.pem
tmpfs:
- /tmp/pids/
networks:
default:
internal: false
ipam:
config:
- subnet: 172.99.0.0/16
volumes:
pgdata:
redisdata:
promdata:
grafanadata:
elasticdata: