-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
44 lines (42 loc) · 1.04 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
version: '3'
services:
drf-subscription:
build: .
image: drf-subscription:latest
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/src
ports:
- "8000:8000"
container_name: drf-subscription
tty: true
environment:
- DEBUG=1
- SECRET_KEY=dbaa2_i8%*4r0-=z-+_mz5r-!qeed@(-a_r(g@k9jo9y4r38%m
- DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
depends_on:
- redis
redis:
image: redis:alpine
celery:
build: .
command: celery -A sample worker -l info
volumes:
- .:/usr/src/app/
environment:
- DEBUG=1
- SECRET_KEY=dbaa2_i8%*4r0-=z-+_mz5r-!qeed@(-a_r(g@k9jo9y4r38%m
- DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
depends_on:
- redis
celery-beat:
build: .
command: celery -A sample beat -l info
volumes:
- .:/usr/src/app/
environment:
- DEBUG=1
- SECRET_KEY=dbaa2_i8%*4r0-=z-+_mz5r-!qeed@(-a_r(g@k9jo9y4r38%m
- DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
depends_on:
- redis