-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
45 lines (45 loc) · 1.13 KB
/
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
# docker-compose.yml
version: '3'
services:
consumer:
build:
context: .
dockerfile: Dockerfile.consumer # consumer.py를 위한 새로운 Dockerfile
env_file:
- .env.dev
environment:
- IN_CONTAINER=YES
web:
build: .
# command: python manage.py runserver 0.0.0.0:8000
command: gunicorn config.wsgi:application --bind 0.0.0.0:8000 --timeout=60
volumes:
- static_volume:/usr/src/app/_static
- media_volume:/usr/src/app/_media
expose:
- 8000
env_file:
- ./.env.dev
environment:
- IN_CONTAINER=YES
nginx:
build: ./nginx
volumes:
- ./static:/usr/src/app/_static
- media_volume:/usr/src/app/_media
- ./data/certbot/conf:/etc/letsencrypt
- ./data/certbot/www:/var/www/certbot
ports:
- 80:80
- 443:443
depends_on:
- web
certbot:
image: certbot/certbot
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
volumes:
- ./data/certbot/conf:/etc/letsencrypt
- ./data/certbot/www:/var/www/certbot
volumes:
static_volume:
media_volume: