-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.prod.yaml
83 lines (78 loc) · 1.49 KB
/
docker-compose.prod.yaml
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
version: '3'
services:
db:
image: postgres:16-alpine
env_file:
- .env.prod
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./scripts:/scripts
app:
build:
context: ./app
ports:
- "8000:8000"
volumes:
- ./app:/app
command: >
sh -c '
cd /app &&
echo "Starting server" &&
gunicorn --bind 0.0.0.0:8000 app.wsgi:application --reload
'
env_file:
- .env.prod
depends_on:
- db
redis:
image: redis:alpine
expose:
- 6379
logging:
driver: "json-file"
options:
max-file: "5"
max-size: "10m"
celery:
restart: always
build:
context: ./app
command: [ "celery", "-A", "app", "worker", "--loglevel=info", "-E" ]
volumes:
- ./app:/app
env_file:
- .env.prod
depends_on:
- db
- redis
- app
celery-beat:
build: ./app
command: [ "celery", "-A", "app", "beat", "--loglevel=info", "--pidfile=/tmp/celerybeat.pid", "--schedule=/tmp/celerybeat-schedule" ]
volumes:
- ./app:/app
env_file:
- .env.prod
depends_on:
- db
- redis
nginx:
restart: always
build:
context: .
dockerfile: Dockerfile.nginx
image: nginx:alpine
ports:
- "80:80"
- 443:443
depends_on:
- app
logging:
driver: "json-file"
options:
max-file: "5"
max-size: "10m"
volumes:
postgres_data: