-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-stage.yml
54 lines (48 loc) · 1003 Bytes
/
docker-compose-stage.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
version: "3.9"
services:
redis:
container_name: redis
image: redis
restart: always
ports:
- "6379:6379"
command: redis-server --save 60 1 --loglevel warning
backend:
build: .
container_name: backend
command: gunicorn core.wsgi --bind 0.0.0.0:8000
volumes:
- ./core:/app
- static_volume:/app/static
- media_volume:/app/meida
expose:
- "8000"
environment:
- SECRET_KET=test
- DEBUG=False
depends_on:
- redis
worker:
build: .
volumes:
- ./core:/app
command: celery -A core worker --loglevel=info
depends_on:
- redis
- backend
nginx:
image: nginx
container_name: nginx
restart: always
ports:
- "80:80"
volumes:
- ./default.conf:/etc/nginx/conf.d/default.conf
- static_volume:/home/app/static
- media_volume:/home/app/media
depends_on:
- redis
- backend
volumes:
static_volume:
media_volume: