forked from modrinth/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
500 lines (500 loc) · 12.1 KB
/
Copy pathdocker-compose.yml
File metadata and controls
500 lines (500 loc) · 12.1 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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
name: labrinth
services:
postgres_db:
# staging/prod Labrinth are currently using this version of Postgres
image: postgres:15-alpine
container_name: labrinth-postgres
volumes:
- db-data:/var/lib/postgresql/data
ports:
- '127.0.0.1:5432:5432'
environment:
POSTGRES_USER: labrinth
POSTGRES_PASSWORD: labrinth
POSTGRES_HOST_AUTH_METHOD: trust
PGUSER: labrinth
healthcheck:
test: ['CMD', 'pg_isready', '-U', 'labrinth']
interval: 3s
timeout: 5s
retries: 3
typesense0:
image: typesense/typesense:30.1
container_name: labrinth-typesense0
restart: on-failure
ports:
- '127.0.0.1:8108:8108'
volumes:
- typesense-data:/data
command: --data-dir=/data --api-key=modrinth --enable-cors
healthcheck:
test: ['CMD-SHELL', "bash -lc '</dev/tcp/127.0.0.1/8108'"]
interval: 3s
timeout: 5s
retries: 3
meilisearch0:
image: getmeili/meilisearch:v1.12.0
container_name: labrinth-meilisearch0
networks:
- meilisearch-mesh
restart: on-failure
ports:
- '127.0.0.1:7700:7700'
volumes:
- meilisearch-data:/data.ms
environment:
MEILI_MASTER_KEY: modrinth
MEILI_HTTP_PAYLOAD_SIZE_LIMIT: 107374182400
MEILI_LOG_LEVEL: warn
healthcheck:
test: ['CMD', 'curl', '--fail', 'http://localhost:7700/health']
interval: 3s
timeout: 5s
retries: 3
redis:
image: redis:alpine
container_name: labrinth-redis
restart: on-failure
ports:
- '127.0.0.1:6379:6379'
volumes:
- redis-data:/data
healthcheck:
test: ['CMD', 'redis-cli', 'PING']
interval: 3s
timeout: 5s
retries: 3
redis-cluster-0:
profiles:
- clustered-redis
image: redis:alpine
container_name: labrinth-redis-cluster-0
restart: on-failure
networks:
- redis-cluster-mesh
ports:
- '127.0.0.1:7000:7000'
command:
[
'redis-server',
'--port',
'7000',
'--cluster-enabled',
'yes',
'--cluster-config-file',
'nodes.conf',
'--cluster-node-timeout',
'5000',
'--appendonly',
'no',
'--save',
'',
]
tmpfs:
- /data
healthcheck:
test: ['CMD', 'redis-cli', '-p', '7000', 'PING']
interval: 3s
timeout: 5s
retries: 10
redis-cluster-1:
profiles:
- clustered-redis
image: redis:alpine
container_name: labrinth-redis-cluster-1
restart: on-failure
networks:
- redis-cluster-mesh
ports:
- '127.0.0.1:7001:7001'
command:
[
'redis-server',
'--port',
'7001',
'--cluster-enabled',
'yes',
'--cluster-config-file',
'nodes.conf',
'--cluster-node-timeout',
'5000',
'--appendonly',
'no',
'--save',
'',
]
tmpfs:
- /data
healthcheck:
test: ['CMD', 'redis-cli', '-p', '7001', 'PING']
interval: 3s
timeout: 5s
retries: 10
redis-cluster-2:
profiles:
- clustered-redis
image: redis:alpine
container_name: labrinth-redis-cluster-2
restart: on-failure
networks:
- redis-cluster-mesh
ports:
- '127.0.0.1:7002:7002'
command:
[
'redis-server',
'--port',
'7002',
'--cluster-enabled',
'yes',
'--cluster-config-file',
'nodes.conf',
'--cluster-node-timeout',
'5000',
'--appendonly',
'no',
'--save',
'',
]
tmpfs:
- /data
healthcheck:
test: ['CMD', 'redis-cli', '-p', '7002', 'PING']
interval: 3s
timeout: 5s
retries: 10
redis-cluster-3:
profiles:
- clustered-redis
image: redis:alpine
container_name: labrinth-redis-cluster-3
restart: on-failure
networks:
- redis-cluster-mesh
ports:
- '127.0.0.1:7003:7003'
command:
[
'redis-server',
'--port',
'7003',
'--cluster-enabled',
'yes',
'--cluster-config-file',
'nodes.conf',
'--cluster-node-timeout',
'5000',
'--appendonly',
'no',
'--save',
'',
]
tmpfs:
- /data
healthcheck:
test: ['CMD', 'redis-cli', '-p', '7003', 'PING']
interval: 3s
timeout: 5s
retries: 10
redis-cluster-4:
profiles:
- clustered-redis
image: redis:alpine
container_name: labrinth-redis-cluster-4
restart: on-failure
networks:
- redis-cluster-mesh
ports:
- '127.0.0.1:7004:7004'
command:
[
'redis-server',
'--port',
'7004',
'--cluster-enabled',
'yes',
'--cluster-config-file',
'nodes.conf',
'--cluster-node-timeout',
'5000',
'--appendonly',
'no',
'--save',
'',
]
tmpfs:
- /data
healthcheck:
test: ['CMD', 'redis-cli', '-p', '7004', 'PING']
interval: 3s
timeout: 5s
retries: 10
redis-cluster-5:
profiles:
- clustered-redis
image: redis:alpine
container_name: labrinth-redis-cluster-5
restart: on-failure
networks:
- redis-cluster-mesh
ports:
- '127.0.0.1:7005:7005'
command:
[
'redis-server',
'--port',
'7005',
'--cluster-enabled',
'yes',
'--cluster-config-file',
'nodes.conf',
'--cluster-node-timeout',
'5000',
'--appendonly',
'no',
'--save',
'',
]
tmpfs:
- /data
healthcheck:
test: ['CMD', 'redis-cli', '-p', '7005', 'PING']
interval: 3s
timeout: 5s
retries: 10
redis-cluster-creator:
profiles:
- clustered-redis
image: redis:alpine
container_name: labrinth-redis-cluster-creator
networks:
- redis-cluster-mesh
depends_on:
redis-cluster-0:
condition: service_healthy
redis-cluster-1:
condition: service_healthy
redis-cluster-2:
condition: service_healthy
redis-cluster-3:
condition: service_healthy
redis-cluster-4:
condition: service_healthy
redis-cluster-5:
condition: service_healthy
entrypoint: ['sh', '-c']
command:
- |
cluster_info="$$(redis-cli -h redis-cluster-0 -p 7000 cluster info 2>/dev/null || true)"
case "$$cluster_info" in
*"cluster_state:ok"*) exit 0 ;;
esac
exec redis-cli --cluster create \
redis-cluster-0:7000 \
redis-cluster-1:7001 \
redis-cluster-2:7002 \
redis-cluster-3:7003 \
redis-cluster-4:7004 \
redis-cluster-5:7005 \
--cluster-replicas 1 \
--cluster-yes
redis-insight:
profiles:
- clustered-redis
image: redis/redisinsight:latest
container_name: labrinth-redis-insight
restart: on-failure
networks:
- redis-cluster-mesh
depends_on:
redis-cluster-creator:
condition: service_completed_successfully
ports:
- '127.0.0.1:5540:5540'
volumes:
- redis-insight-data:/data
clickhouse:
image: clickhouse/clickhouse-server
container_name: labrinth-clickhouse
ports:
- '127.0.0.1:8123:8123'
environment:
CLICKHOUSE_USER: default
CLICKHOUSE_PASSWORD: default
healthcheck:
test: ['CMD-SHELL', 'clickhouse-client --query "SELECT 1"']
interval: 3s
timeout: 5s
retries: 3
mail:
image: axllent/mailpit:v1.27
container_name: labrinth-mail
ports:
- '127.0.0.1:1025:1025'
- '127.0.0.1:8025:8025'
environment:
MP_ENABLE_SPAMASSASSIN: postmark
healthcheck:
test:
[
'CMD',
'wget',
'-q',
'-O/dev/null',
'http://localhost:8025/api/v1/info',
]
interval: 3s
timeout: 5s
retries: 3
gotenberg:
image: gotenberg/gotenberg:8
container_name: labrinth-gotenberg
ports:
- '127.0.0.1:13000:3000'
extra_hosts:
# Gotenberg must send a message on a webhook to our backend,
# so it must have access to our local network
- 'host.docker.internal:host-gateway'
redpanda:
image: redpandadata/redpanda:v26.1.10
container_name: labrinth-redpanda
command:
- redpanda
- start
- --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092
- --advertise-kafka-addr internal://redpanda:9092,external://localhost:19092
- --pandaproxy-addr internal://0.0.0.0:8082,external://0.0.0.0:18082
- --advertise-pandaproxy-addr internal://redpanda:8082,external://localhost:18082
- --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081
- --rpc-addr redpanda:33145
- --advertise-rpc-addr redpanda:33145
- --mode dev-container
- --smp 1
- --default-log-level=info
ports:
- '127.0.0.1:18081:18081'
- '127.0.0.1:18082:18082'
- '127.0.0.1:19092:19092'
- '127.0.0.1:19644:9644'
volumes:
- redpanda-data:/var/lib/redpanda/data
healthcheck:
test: ['CMD', 'rpk', 'cluster', 'info', '-X', 'brokers=localhost:9092']
interval: 10s
timeout: 15s
retries: 10
labrinth:
profiles:
- with-labrinth
build:
context: .
dockerfile: ./apps/labrinth/Dockerfile
container_name: labrinth
ports:
- '127.0.0.1:8000:8000'
env_file: ./apps/labrinth/.env.docker-compose
volumes:
- labrinth-cdn-data:/tmp/modrinth
depends_on:
postgres_db:
condition: service_healthy
meilisearch:
condition: service_healthy
elasticsearch0:
condition: service_healthy
elasticsearch1:
condition: service_healthy
elasticsearch2:
condition: service_healthy
redis:
condition: service_healthy
redpanda:
condition: service_healthy
clickhouse:
condition: service_healthy
mail:
condition: service_healthy
develop:
watch:
- path: ./apps/labrinth
action: rebuild
delphi:
profiles:
- with-delphi
image: ghcr.io/modrinth/delphi:main
container_name: labrinth-delphi
ports:
- '127.0.0.1:59999:59999'
environment:
LABRINTH_ENDPOINT: http://host.docker.internal:8000/_internal/delphi/ingest
LABRINTH_ADMIN_KEY: feedbeef
healthcheck:
test:
['CMD', 'wget', '-q', '-O/dev/null', 'http://localhost:59999/health']
interval: 3s
timeout: 5s
retries: 3
volumes:
# Labrinth deposits version files here;
# Delphi reads them from here
- /tmp/modrinth:/tmp/modrinth:ro,z
extra_hosts:
# Delphi must send a message on a webhook to our backend,
# so it must have access to our local network
- 'host.docker.internal:host-gateway'
# Sharded Meilisearch
meilisearch1:
profiles:
- sharded-meilisearch
image: getmeili/meilisearch:v1.12.0
container_name: labrinth-meilisearch1
restart: on-failure
networks:
- meilisearch-mesh
ports:
- '127.0.0.1:7701:7700'
volumes:
- meilisearch1-data:/data.ms
environment:
MEILI_MASTER_KEY: modrinth
MEILI_HTTP_PAYLOAD_SIZE_LIMIT: 107374182400
MEILI_LOG_LEVEL: warn
healthcheck:
test: ['CMD', 'curl', '--fail', 'http://localhost:7700/health']
interval: 3s
timeout: 5s
retries: 3
nginx-meilisearch-lb:
profiles:
- sharded-meilisearch
image: nginx:alpine
container_name: labrinth-meili-lb
networks:
- meilisearch-mesh
depends_on:
meilisearch0:
condition: service_healthy
meilisearch1:
condition: service_healthy
ports:
- '127.0.0.1:7710:80'
volumes:
- ./apps/labrinth/nginx/meili-lb.conf:/etc/nginx/conf.d/default.conf:ro
networks:
meilisearch-mesh:
driver: bridge
redis-cluster-mesh:
driver: bridge
volumes:
typesense-data:
meilisearch-data:
meilisearch1-data:
elasticsearch0-data:
elasticsearch1-data:
elasticsearch2-data:
elasticsearch-certs:
db-data:
redis-data:
redis-insight-data:
redpanda-data:
labrinth-cdn-data: