-
Notifications
You must be signed in to change notification settings - Fork 0
/
local.yml
121 lines (109 loc) · 2.15 KB
/
local.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
version: "3.9"
services:
es:
image: elasticsearch:7.17.9
environment:
- discovery.type=single-node
ports:
- "9200:9200"
networks:
- medium
api:
build:
context: .
dockerfile: ./docker/local/django/Dockerfile
volumes:
- .:/app:z
- static_volume:/app/staticfiles
- media_volume:/app/mediafiles
expose:
- "8000"
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
depends_on:
- postgres
- mailhog
- redis
- es
command: /start
networks:
- medium
postgres:
build:
context: .
dockerfile: ./docker/local/postgres/Dockerfile
volumes:
- local_postgres_data:/var/lib/postgresql/data
- local_postgres_data_backups:/backups
env_file:
- ./.envs/.local/.postgres
networks:
- medium
mailhog:
image: mailhog/mailhog:v1.0.0
container_name: mailhog
ports:
- "9000:8025"
networks:
- medium
redis:
image: redis:7-alpine
networks:
- medium
celery_worker:
build:
context: .
dockerfile: ./docker/local/django/Dockerfile
command: /start-celeryworker
volumes:
- .:/app
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
depends_on:
- redis
- postgres
- mailhog
networks:
- medium
flower:
build:
context: .
dockerfile: ./docker/local/django/Dockerfile
command: /start-flower
volumes:
- flower_data:/data
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
ports:
- "5555:5555"
depends_on:
- redis
- postgres
networks:
- medium
nginx:
restart: always
depends_on:
- api
volumes:
- static_volume:/app/staticfiles
- media_volume:/app/mediafiles
build:
context: ./docker/local/nginx
dockerfile: Dockerfile
ports:
- "9001:9001"
networks:
- medium
networks:
medium:
driver: bridge
volumes:
static_volume:
media_volume:
local_postgres_data: {}
local_postgres_data_backups: {}
flower_data: {}