-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
67 lines (64 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
services:
postgres:
container_name: sati-db
image: sati-db
build:
context: .
dockerfile: containers/sati-db/Dockerfile
restart: always
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "10"
compress: "true"
env_file:
- ${ENV_FILE:-.env}
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD:?DB_PASSWORD not set!}
networks:
- sati
volumes:
- pgdata:/var/lib/postgresql/data
django:
container_name: sati-app
image: sati-app
build:
context: .
dockerfile: containers/sati-app/Dockerfile
command: >
/usr/local/bin/gunicorn sati.wsgi:application \
--workers=4 \
--max-requests=1000 \
--max-requests-jitter=500 \
--bind='0.0.0.0:8000' \
--chdir='/opt/sati/' \
--log-file=- \
--worker-tmp-dir='/dev/shm'
restart: always
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "10"
compress: "true"
env_file:
- ${ENV_FILE:-.env}
volumes:
- ./static:/opt/sati/static
- ./media:/opt/sati/media
networks:
- sati
ports:
- "127.0.0.1:8000:8000"
depends_on:
- postgres
volumes:
pgdata:
networks:
sati:
driver: bridge
ipam:
driver: default
config:
- subnet: ${DOCKER_SUBNET:-172.18.0.0/24}