-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose-prod.yml
90 lines (82 loc) · 2.09 KB
/
docker-compose-prod.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
88
89
90
version: "3.9"
services:
redis:
container_name: redis
image: redis:6.2.7-alpine
restart: always
ports:
- "6379:6379"
command: redis-server --save 60 1 --loglevel warning
db:
container_name: db
image: postgres:alpine
volumes:
- postgres_data:/var/lib/postgresql/data
env_file:
- ./envs/prod/db/.env
restart: always
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U postgres']
interval: 10s
timeout: 5s
retries: 5
backend:
build:
context: .
dockerfile: ./dockerfiles/stage/django/Dockerfile
container_name: backend
command: sh -c "python3 manage.py check_database && \
python3 manage.py makemigrations --noinput && \
python3 manage.py migrate --noinput && \
python3 manage.py collectstatic --noinput && \
gunicorn --bind 0.0.0.0:8000 core.wsgi:application"
volumes:
- static_volume:/usr/src/app/static
- media_volume:/usr/src/app/media
expose:
- "8000"
env_file:
- ./envs/prod/django/.env
depends_on:
- db
- redis
certbot:
build:
context: ./dockerfiles/prod/certbot/
command: echo "Skipping..."
container_name: certbot
env_file:
- ./envs/prod/nginx/.env
volumes:
- certbot_www_volume:/vol/www/
- certbot_certs_volume:/etc/letsencrypt/
depends_on:
- nginx
nginx:
container_name: nginx
build:
context: .
dockerfile: ./dockerfiles/prod/nginx/Dockerfile
restart: always
env_file:
- ./envs/prod/nginx/.env
ports:
- 443:443
- 80:80
volumes:
- static_volume:/home/app/static
- media_volume:/home/app/media
- certbot_www_volume:/vol/www/
- proxy_dhparams:/vol/proxy
- certbot_certs_volume:/etc/letsencrypt/
- ./dockerfiles/prod/nginx/config:/etc/nginx/templates
- ./app/:/usr/share/nginx/html
depends_on:
- backend
volumes:
postgres_data:
static_volume:
media_volume:
certbot_www_volume:
certbot_certs_volume:
proxy_dhparams: