-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
140 lines (137 loc) · 3.68 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
version: '2'
services:
# --------------------------------------------------------------------------
# Caddy
# --------------------------------------------------------------------------
caddy:
image: abiosoft/caddy:latest
restart: unless-stopped
hostname: caddy
env_file: .env
volumes:
- ./caddy/Caddyfile:/etc/Caddyfile
- ./staticfiles:/var/www/chagrade/static
- ./certs/caddy:/etc/caddycerts
ports:
- "80:80"
- "443:443"
depends_on:
- django
links:
- django
logging:
options:
max-size: "200k"
# --------------------------------------------------------------------------
# Django/Gunicorn
# --------------------------------------------------------------------------
django:
build: .
restart: unless-stopped
hostname: django
command: /usr/local/bin/gunicorn chagrade.wsgi:application -w 2 -b :8000 --reload --log-file=- --access-logfile=-
env_file: .env
volumes:
- .:/app
- ./backups:/backups
ports:
- "8000:8000"
depends_on:
- postgres
links:
- postgres
logging:
options:
max-size: "200k"
# --------------------------------------------------------------------------
# Database
# --------------------------------------------------------------------------
postgres:
image: postgres:9.5
restart: unless-stopped
environment:
- PGDATA=/app/var/lib/postgresql/data/pgdata
- POSTGRES_DB=${DB_NAME}
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
ports:
- 5432:5432
volumes:
- ./var/lib/postgresql/data:/app/var/lib/postgresql/data
- ./backups:/backups
env_file: .env
logging:
options:
max-size: "200k"
#-----------------------------------------------
# Rabbitmq Service
#-----------------------------------------------
rabbitmq:
image: rabbitmq:3-management
restart: unless-stopped
hostname: rabbit
env_file: .env
ports:
- 15672:15672
- 5672:5672
volumes:
- ./var/rabbitmq:/var/lib/rabbitmq/
#-----------------------------------------------
# Celery Service
#-----------------------------------------------
celery:
restart: unless-stopped
hostname: celery
command: bash -c "celery -A chagrade worker --loglevel=debug"
working_dir: /app/
build:
context: .
dockerfile: Dockerfile.celery
depends_on:
- rabbitmq
- postgres
environment:
- DJANGO_SETTINGS_MODULE=chagrade.settings.base
env_file: .env
volumes:
- .:/app
#-----------------------------------------------
# Flower Service
#-----------------------------------------------
flower:
restart: unless-stopped
hostname: flower
env_file: .env
build:
context: .
dockerfile: Dockerfile.flower
ports:
- 15555:5555
depends_on:
- celery
- rabbitmq
#-----------------------------------------------
# Minio local storage helper
#-----------------------------------------------
minio:
image: minio/minio:RELEASE.2018-12-06T01-27-43Z
command: server /export
volumes:
- ./var/minio:/export
- ./run_minio.sh:/app/run_minio.sh
ports:
- $MINIO_PORT:9000
env_file: .env
createbuckets:
image: minio/mc
depends_on:
- minio
env_file: .env
entrypoint: >
/bin/sh -c "
set -x
while ! nc -z minio $MINIO_PORT; echo 'Waiting for minio to startup...' && sleep 0.1; sleep 3;
/usr/bin/mc config host add minio_docker http://minio:$MINIO_PORT $MINIO_ACCESS_KEY $MINIO_SECRET_KEY;
/usr/bin/mc mb minio_docker/$AWS_STORAGE_BUCKET_NAME;
exit 0;
"