-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
46 lines (40 loc) · 1008 Bytes
/
docker-compose.dev.yml
File metadata and controls
46 lines (40 loc) · 1008 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version: "3.8"
services:
iss-back:
environment:
DEBUG: ${DEBUG:-true}
volumes:
- ./backend-app:/app
command: >
sh -c "gunicorn --config './conf/gunicorn_conf.py' proj_back.wsgi:application"
iss-storage:
environment:
DEBUG: ${DEBUG:-true}
volumes:
- ./storage-app/src:/app/src
iss-front:
volumes:
- ./frontend-app/src:/app/src
- ./frontend-app/public:/app/public
command: sh -c "rm .eslintrc.json && npm start"
iss-worker:
volumes:
- ./storage-app/src:/app/src
dashboard:
container_name: iss_dashboard
build:
dockerfile: Dockerfile.storage
ports:
- 9090:5555
environment:
CELERY_BROKER_URL: redis://iss-broker:6379/0
CELERY_RESULT_BACKEND: redis://iss-broker:6379/0
restart: always
depends_on:
- iss-broker
- iss-worker
command: celery --broker=redis://iss-broker:6379/0 flower --port=5555
networks:
- iss_network
networks:
iss_network: