-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
87 lines (79 loc) · 1.39 KB
/
docker-compose.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
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
version: '3.8'
services:
redis:
image: redis
restart: unless-stopped
hostname: redis
ports:
- 6379:6379/tcp
volumes:
- redis:/data/redis
db:
image: postgres
hostname: db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: pass
PGDATA: /data/postgres
volumes:
- db:/data/postgres
ports:
- 5432:5432
restart: unless-stopped
backend:
hostname: backend
volumes:
- static:/static
env_file:
- ./backend/.env.dev
build:
context: ./backend
dockerfile: Dockerfile
command: ["./entrypoint.sh"]
ports:
- 8000:8000
depends_on:
- db
- redis
links:
- db:db
- redis:redis
celery:
hostname: celery
build:
context: ./backend
command: celery -A e_comm3rce worker -B -l INFO
env_file:
- ./backend/.env.dev
links:
- redis:redis
depends_on:
- redis
flower:
build:
context: ./backend
hostname: flower
command: celery -A e_comm3rce flower
env_file:
- ./backend/.env.dev
links:
- redis:redis
depends_on:
- redis
ports:
- 5555:5555
nginx:
hostname: nginx
build: ./nginx
volumes:
- static:/static
ports:
- 80:80
links:
- backend:backend
depends_on:
- backend
volumes:
redis:
db:
static: