forked from codeasashu/openapi-documentor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
48 lines (43 loc) · 911 Bytes
/
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
version: '3'
volumes:
static_data: {}
mysql_data: {}
mysql_data_backups: {}
production_traefik: {}
services:
django:
build:
context: .
dockerfile: ./compose/production/django/Dockerfile
image: openapi_documentor:1.0
depends_on:
- mysql
- redis
env_file:
- .env
command: /start
ports:
- "5000:5000"
volumes:
- static_data:/app/staticfiles:z
mysql:
image: mariadb:latest
volumes:
- ./data/mysql:/var/lib/mysql:z
- mysql_data_backups:/backups:z
env_file:
- ./.envs/.production/.mysql
- .env
nginx:
build:
context: .
dockerfile: ./compose/production/nginx/Dockerfile
image: openapi_documentor_production_nginx
depends_on:
- django
volumes:
- static_data:/var/www/html/staticfiles:ro
ports:
- "0.0.0.0:8083:80"
redis:
image: redis:5.0