-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
executable file
·55 lines (46 loc) · 973 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
54
55
version: "3"
services:
postgres:
image: postgres:alpine
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=83asj19a
- POSTGRES_DB=postgres
ports:
- "5432:5432"
restart: on-failure
volumes:
- postgres_data:/var/lib/postgresql/data/
rabbitmq:
image: rabbitmq:alpine
ports:
- "5672:5672"
redis:
image: "redis:alpine"
ports:
- "6379:6379"
django:
build:
context: .
dockerfile: Dockerfile
command: ["manage.py", "runserver", "0.0.0.0:8000"]
restart: unless-stopped
depends_on:
- postgres
ports:
- "8000:8000"
volumes:
- .:/app
celery:
build:
context: .
dockerfile: Dockerfile
command: ["-m", "celery", "-A", "server", "worker", "-l", "info"]
depends_on:
- django
- postgres
- rabbitmq
- redis
restart: on-failure
volumes:
postgres_data: