-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdev.yml
48 lines (48 loc) · 851 Bytes
/
dev.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
version: "3"
services:
postgres:
image: postgres:10
environment:
- PGDATA=/var/lib/postgresql/data
volumes:
- data:/var/lib/postgresql/data
redis:
image: redis:4.0
django:
build:
context: .
dockerfile: Dockerfile
command: runserver
env_file:
- .env
ports:
- "8000:8000"
volumes:
- ./teerace:/code/teerace
- ./tests:/code/tests
depends_on:
- postgres
- redis
celery:
image: teerace_django
command: celery
env_file:
- .env
volumes:
- ./teerace:/code/teerace
depends_on:
- postgres
- redis
celerybeat:
image: teerace_django
command: beat
env_file:
- .env
volumes:
- ./teerace:/code/teerace
depends_on:
- postgres
- redis
volumes:
data:
driver: local