-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
90 lines (81 loc) · 1.84 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
version: '3.8'
services:
db:
image: postgres
volumes:
- postgres_data:/var/lib/postgresql/data/
environment:
- POSTGRES_DB=${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
redis:
image: "redis:alpine"
# backend-gunicorn:
# build: ./backend
# command: >
# bash -c "python manage.py wait_for_db &&
# python manage.py migrate &&
# gunicorn backend.wsgi:application --bind 0.0.0.0:8000"
# volumes:
# - ./backend:/code
# ports:
# - 8000:8000
# depends_on:
# - db
# - redis
# env_file:
# - ./backend/.env
backend-daphne:
build: ./backend
command: >
bash -c "python manage.py wait_for_db &&
python manage.py migrate &&
daphne backend.asgi:application --port 8001 --bind 0.0.0.0"
volumes:
- ./backend:/code
ports:
- 8001:8001
depends_on:
- db
- redis
env_file:
- ./backend/.env
adminer:
image: adminer
ports:
- 8080:8080
depends_on:
- db
celery-worker:
build: ./backend
command: celery -A backend worker -l info -E
volumes:
- ./backend:/code
depends_on:
- db
- redis
env_file:
- ./backend/.env
celery-beat:
build: ./backend
command: celery -A backend beat -l info
volumes:
- ./backend:/code
depends_on:
- db
- redis
- celery-worker
env_file:
- ./backend/.env
flower:
build: ./backend
command: celery -A backend flower --broker=redis://redis:6379/0
ports:
- 5555:5555
depends_on:
- celery-worker
- redis
env_file:
- ./backend/.env
volumes:
postgres_data: