-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
86 lines (80 loc) · 2.11 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
version: "3"
services:
nginx:
image: nginx:mainline
container_name: diomedes_nginx
volumes:
- $PWD/conf.d:/etc/nginx/conf.d
- ./static:/app/static
- "/etc/localtime:/etc/localtime:ro"
- $PWD/data/certbot/conf:/etc/letsencrypt
- $PWD//data/certbot/www:/var/www/certbot
command: "/bin/sh -c 'while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g \"daemon off;\"'"
ports:
- "80:80"
- "443:443"
depends_on:
- dioapp
links:
- "dioapp:dioapp"
certbot:
image: certbot/certbot
volumes:
- $PWD/data/certbot/conf:/etc/letsencrypt
- $PWD/data/certbot/www:/var/www/certbot
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
dioredis:
image: redis:4-alpine
# Change "defaultpass" to a more secure password
command: redis-server --requirepass defaultpass
ports:
- "6379:6379"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- ./data:/data
dioapp:
build:
context: .
dockerfile: ./Dockerfile
image: diomedes
container_name: diomedes_web
links:
- "dioredis:dioredis"
- "diodb:diodb"
depends_on:
- dioredis
- diodb
volumes:
- ./static:/app/static
- "/etc/localtime:/etc/localtime:ro"
env_file:
- ./.env
ports:
- "8000:8000"
environment:
- DJANGO_SETTINGS_MODULE=diomedes.settings.production
diocelery:
image: diomedes
container_name: diomedes_celery_b
command: ['celery', '-A', 'diomedes', 'worker','-B', '-l', 'info', '--scheduler', 'django_celery_beat.schedulers:DatabaseScheduler']
volumes:
- "/etc/localtime:/etc/localtime:ro"
- .:/app
depends_on:
- dioredis
- diodb
links:
- "dioredis:dioredis"
- "diodb:diodb"
diodb:
image: postgres
ports:
- "5432:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: defaultpass # Change this to something secure
POSTGRES_DB: postgres
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: