-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
31 lines (31 loc) · 696 Bytes
/
docker-compose.dev.yml
File metadata and controls
31 lines (31 loc) · 696 Bytes
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
services:
nginx:
entrypoint: ["echo", "Service nginx disabled"]
restart: "no"
api:
ports:
- "${DEV_WEBSERVER_PORT:-8000}:8000"
environment:
- DJANGO_DEVELOPMENT=true
- API_HOST=0.0.0.0
volumes:
- ./api:/webapp/api
- ./media:/webapp/media
celery-fast:
environment:
- DJANGO_DEVELOPMENT=true
volumes:
- ./api:/webapp/api
- ./media:/webapp/media
celery-slow:
environment:
- DJANGO_DEVELOPMENT=true
volumes:
- ./api:/webapp/api
- ./media:/webapp/media
frontend:
environment:
- DJANGO_DEVELOPMENT=true
volumes:
- ./frontend/src:/webapp/frontend/src
restart: always