-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.override.yml
67 lines (65 loc) · 1.73 KB
/
docker-compose.override.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
version: '3'
services:
django:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command: [ "./manage.py", "runserver", "0.0.0.0:8000" ]
# Log printing via Rich is enhanced by a TTY
tty: true
env_file: ./dev/.env.docker-compose
# Include the below configuration when NN active learning is enabled
# deploy:
# resources:
# reservations:
# devices:
# - driver: nvidia
# count: 1
# capabilities: [gpu]
volumes:
- .:/opt/django-project
- ${SAMPLES_DIR-./samples}:${SAMPLES_DIR-/srv/samples}
ports:
- 8000:8000
depends_on:
- postgres
- rabbitmq
- minio
celery:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command:
[
"celery",
"-A",
"miqa.celery",
"worker",
"--loglevel",
"INFO",
"--without-heartbeat",
"-B" # add celery beat worker to schedule automatic tasks
]
# Docker Compose does not set the TTY width, which causes Celery errors
tty: false
env_file: ./dev/.env.docker-compose
volumes:
- .:/opt/django-project
- ${SAMPLES_DIR-./samples}:${SAMPLES_DIR-/srv/samples}
depends_on:
- postgres
- rabbitmq
- minio
npm:
image: node:latest
command: [ "npm", "run", "serve" ]
working_dir: /opt/client
environment:
# Fixes https://github.com/OpenImaging/miqa/issues/298
# nodeversion >=17 deprecated some OpenSSL algorithms which a dependency is still using
# https://nodejs.org/en/blog/release/v17.0.0/
- NODE_OPTIONS=--openssl-legacy-provider
volumes:
- ./web_client:/opt/client
ports:
- 8081:8081