-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml
72 lines (69 loc) · 1.46 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
68
69
70
71
72
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
volumes:
- .:/opt/django-project
ports:
- 8000:8000
depends_on:
- postgres
- elasticsearch
- rabbitmq
- minio
celery:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command: [
"celery",
"--app", "isic.celery",
"worker",
"--loglevel", "INFO",
"--without-heartbeat"
]
# Docker Compose does not set the TTY width, which causes Celery errors
tty: false
env_file: ./dev/.env.docker-compose
volumes:
- .:/opt/django-project
depends_on:
- postgres
- elasticsearch
- rabbitmq
- minio
celerybeat:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command: [
"celery",
"--app", "isic.celery",
"beat",
"--loglevel", "INFO"
]
tty: false
env_file: ./dev/.env.docker-compose
volumes:
- .:/opt/django-project
depends_on:
- postgres
- rabbitmq
- minio
node:
build:
context: .
dockerfile: ./dev/node.Dockerfile
command: ["yarn", "run", "start"]
tty: true
volumes:
- .:/opt/django-project
- /opt/django-project/node_modules
ports:
- 8383:8383