-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
53 lines (47 loc) · 1023 Bytes
/
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
version: "3.8"
services:
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- 8000:8000
depends_on:
- db
environment:
CELERY_BROKER: ${REDIS_URI}
CELERY_BACKEND: ${REDIS_URI}
celery:
build: .
command: celery -A core worker -l INFO
volumes:
- .:/code
environment:
CELERY_BROKER: ${REDIS_URI}
CELERY_BACKEND: ${REDIS_URI}
depends_on:
- web
- redis
celery-beat:
build: .
command: celery -A core beat -l INFO --scheduler django_celery_beat.schedulers:DatabaseScheduler
volumes:
- .:/code
depends_on:
- web
- redis
- db
- celery
redis:
image: "redis:alpine"
db:
image: postgres:13
environment:
POSTGRES_DB: ${DB_NAME}
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
volumes:
- postgres_data:/var/lib/postgresql/data/
volumes:
postgres_data: