-
Notifications
You must be signed in to change notification settings - Fork 53
/
docker-compose.yml
510 lines (510 loc) · 10.7 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
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
501
502
503
504
505
506
507
508
509
510
volumes:
elasticsearch:
postgres:
redis:
minio:
web-node_modules:
bots-node_modules:
narcissus-node_modules:
networks:
dev:
services:
elasticsearch:
build: alegre/elasticsearch
environment:
discovery.type: single-node
transport.host: 127.0.0.1
xpack.security.enabled: "false"
bootstrap.memory_lock: "true"
ES_JAVA_OPTS: "-Xms512m -Xmx512m -Dlog4j2.disable.jmx=true"
ulimits:
memlock:
soft: -1
hard: -1
ports:
- "9200:9200"
volumes:
- "./elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml"
- "elasticsearch:/usr/share/elasticsearch/data"
networks:
- dev
postgres:
build: ./alegre/postgres
platform: linux/x86_64
ports:
- "5432:5432"
volumes:
- "postgres:/var/lib/postgresql/data"
environment:
POSTGRESQL_POSTGRES_PASSWORD: postgres
POSTGRESQL_USERNAME: postgres
POSTGRESQL_PASSWORD: postgres
POSTGRESQL_DATABASE: alegre
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: alegre
REPMGR_PASSWORD: repmgrpassword
REPMGR_PRIMARY_HOST: pg-0
REPMGR_PRIMARY_PORT: 5432
REPMGR_PARTNER_NODES: pg-0,pg-1:5432
REPMGR_NODE_NAME: pg-0
REPMGR_NODE_NETWORK_NAME: pg-0
REPMGR_PORT_NUMBER: 5432
networks:
- dev
redis:
image: redis:6.2
ports:
- "6379:6379"
volumes:
- "redis:/data"
networks:
- dev
minio:
image: minio/minio@sha256:fafd3af791a0c564b73d995ef3f8d7bde4d0caf25b32bec3a11dc71a9096479a
command: server /data
ports:
- "9000:9000"
volumes:
- "minio:/data"
environment:
MINIO_ACCESS_KEY: AKIAIOSFODNN7EXAMPLE
MINIO_SECRET_KEY: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
networks:
- dev
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
elasticmq:
image: softwaremill/elasticmq
hostname: presto-elasticmq
ports:
- "9324:9324"
healthcheck:
test: ["CMD", "wget", "-q", "-S", "-O", "-", "127.0.0.1:9324/?Action=ListQueues"]
interval: 10s
timeout: 5s
retries: 10
networks:
- dev
api:
build: check-api
mem_limit: 4g
ports:
- "3000:3000"
- "3300:3300"
depends_on:
- elasticsearch
- postgres
- redis
- pender
- alegre
- narcissus
volumes:
- "./check-api:/app"
environment:
RAILS_ENV: development
SERVER_PORT: 3000
networks:
- dev
extra_hosts:
- "host.docker.internal:host-gateway"
api-background:
build: check-api
command: /app/docker-background.sh
depends_on:
- api
volumes:
- "./check-api:/app"
environment:
RAILS_ENV: development
SERVER_PORT: 3000
networks:
- dev
extra_hosts:
- "host.docker.internal:host-gateway"
pender:
build: pender
platform: linux/x86_64
shm_size: 1G
ports:
- "3200:3200"
- "9555:9555"
volumes:
- "./pender:/app"
depends_on:
- postgres
- redis
- minio
environment:
RAILS_ENV: development
SERVER_PORT: 3200
networks:
- dev
pender-background:
build: pender
platform: linux/x86_64
command: /app/docker-background.sh
shm_size: 1G
volumes:
- "./pender:/app"
depends_on:
- pender
environment:
RAILS_ENV: development
SERVER_PORT: 3200
networks:
- dev
# otel-collector:
# image: otel/opentelemetry-collector-contrib
# volumes:
# - ./pender/config/otel-collector-config.yaml:/etc/otelcol-contrib/config.yaml
# depends_on:
# - pender
# environment:
# RAILS_ENV: development
# SERVER_PORT: 3200
# networks:
# - dev
web:
build: check-web
platform: linux/x86_64
ports:
- "3333:3333"
depends_on:
- api
- api-background
volumes:
- "./check-web:/app"
- "./check-api:/api"
- "./check-ui/.yalc:/root/.yalc"
- "web-node_modules:/app/node_modules"
environment:
PLATFORM: web
NODE_ENV: development
SERVER_PORT: 3333
MODE: development
networks:
- dev
kibana:
image: docker.elastic.co/kibana/kibana:7.9.2
ports:
- "5601:5601"
depends_on:
- elasticsearch
environment:
ELASTICSEARCH_URL: http://elasticsearch:9200
networks:
- dev
presto-server:
build: presto
platform: linux/amd64
ports:
- "8000:8000"
volumes:
- "./presto:/app"
env_file:
- presto/.env_file
environment:
ROLE: server
networks:
- dev
depends_on:
elasticmq:
condition: service_healthy
presto-image:
build: presto
platform: linux/amd64
volumes:
- "./presto:/app"
env_file:
- presto/.env_file
environment:
ROLE: worker
MODEL_NAME: image.Model
networks:
- dev
depends_on:
elasticmq:
condition: service_healthy
presto-audio:
build: presto
platform: linux/amd64
volumes:
- "./presto:/app"
env_file:
- presto/.env_file
environment:
ROLE: worker
MODEL_NAME: audio.Model
networks:
- dev
depends_on:
elasticmq:
condition: service_healthy
presto-video:
build: presto
platform: linux/amd64
volumes:
- "./presto:/app"
env_file:
- presto/.env_file
environment:
ROLE: worker
MODEL_NAME: video.Model
networks:
- dev
depends_on:
elasticmq:
condition: service_healthy
minio:
condition: service_healthy
# presto-mean-tokens:
# build: presto
# platform: linux/amd64
# volumes:
# - "./presto:/app"
# env_file:
# - presto/.env_file
# environment:
# ROLE: worker
# MODEL_NAME: mean_tokens.Model
# networks:
# - dev
# depends_on:
# elasticmq:
# condition: service_healthy
# Uncomment this to enable explainers feature, which requires this model to be running in order to work.
# presto-paraphrase-multilingual:
# build: presto
# platform: linux/amd64
# volumes:
# - "./presto:/app"
# env_file:
# - presto/.env_file
# environment:
# ROLE: worker
# MODEL_NAME: paraphrase_multilingual.Model
# networks:
# - dev
# depends_on:
# elasticmq:
# condition: service_healthy
alegre:
build: alegre
platform: linux/x86_64
ports:
- "3100:3100"
volumes:
- "./alegre:/app"
depends_on:
- postgres
- redis
- elasticsearch
- presto-server
- presto-image
- presto-audio
- presto-video
env_file:
- alegre/.env_file
networks:
- dev
queue_worker:
build: alegre
platform: linux/x86_64
command: ["make", "run_rq_worker"]
volumes:
- "./alegre:/app"
depends_on:
- redis
env_file:
- alegre/.env_file
networks:
- dev
# xlm_r_bert_base_nli_stsb_mean_tokens:
# build: alegre
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - "./alegre:/app"
# depends_on:
# - redis
# env_file:
# - alegre/.env_file
# environment:
# MODEL_NAME: meantokens
# networks:
# - dev
# indian_sbert:
# build: alegre
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - "./alegre:/app"
# depends_on:
# - redis
# env_file:
# - alegre/.env_file
# environment:
# MODEL_NAME: indiansbert
# networks:
# - dev
# paraphrase_multilingual_mpnet_base_v2:
# build: alegre
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - "./alegre:/app"
# depends_on:
# - redis
# env_file:
# - alegre/.env_file
# environment:
# MODEL_NAME: paraphrasemultilingualmpnetbasev2
# networks:
# - dev
# mdeberta_v3_filipino:
# build: alegre
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - "./alegre:/app"
# depends_on:
# - redis
# env_file:
# - alegre/.env_file
# environment:
# MODEL_NAME: mdebertav3filipino
# networks:
# - dev
# video:
# build: alegre
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - "./alegre:/app"
# depends_on:
# - redis
# env_file:
# - alegre/.env_file
# environment:
# MODEL_NAME: video
# networks:
# - dev
# audio:
# build: alegre
# platform: linux/x86_64
# command: ["make", "run_model"]
# volumes:
# - "./alegre:/app"
# depends_on:
# - redis
# env_file:
# - alegre/.env_file
# environment:
# MODEL_NAME: audio
# networks:
# - dev
bots:
build: check-bots
platform: linux/x86_64
volumes:
- "./check-bots:/app"
- "bots-node_modules:/app/node_modules"
ports:
- "8586:8586"
depends_on:
- api
environment:
NODE_ENV: development
SERVER_PORT: 8586
networks:
- dev
# check-slack-bot:
# build: check-slack-bot
# platform: linux/x86_64
# volumes:
# - "./check-slack-bot:/app"
# - "/app/node_modules"
# depends_on:
# - api
# - redis
# networks:
# - dev
narcissus:
build: narcissus
platform: linux/x86_64
shm_size: 1G
volumes:
- "./narcissus:/app"
- "narcissus-node_modules:/app/node_modules"
ports:
- "8687:8687"
depends_on:
- minio
environment:
NODE_ENV: development
SERVER_PORT: 8687
DEPLOY_ENV: local
networks:
- dev
# fetch:
# volumes:
# - "./fetch:/app"
# build: fetch
# platform: linux/x86_64
# depends_on:
# - elasticsearch
# - redis
# - alegre
# - pender
# ports:
# - "9292:9292"
# env_file:
# - fetch/.env_file
# command: start_server
# networks:
# - dev
# fetch-background:
# volumes:
# - "./fetch:/app"
# platform: linux/x86_64
# depends_on:
# - elasticsearch
# - redis
# - alegre
# - pender
# build: fetch
# env_file:
# - fetch/.env_file
# command: run_worker
# networks:
# - dev
mark:
build: check-mark
platform: linux/x86_64
volumes:
- "./check-mark:/app"
- "./check-api:/api"
- "./check-ui/.yalc:/root/.yalc"
- "/app/node_modules"
networks:
- dev
# search:
# build: check-search
# platform: linux/x86_64
# volumes:
# - "./check-search:/app"
# - "/app/node_modules"
# ports:
# - "8001:8001"
# depends_on:
# - api
# environment:
# NODE_ENV: development
# SERVER_PORT: 8001
# DEPLOY_ENV: development
# networks:
# - dev