-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompose.yml
55 lines (51 loc) · 941 Bytes
/
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
version: "3.8"
services:
web:
container_name: nad-ch-dev-local
image: nad-ch-dev-local
ports:
- "8080:5000"
depends_on:
- postgres
- redis
- storage
- flower
build: .
volumes:
- .:/app
env_file:
- .env
postgres:
container_name: postgres
image: postgres:13
ports:
- "5432:5432"
volumes:
- /var/lib/postgresql/data
env_file:
- .env
redis:
container_name: redis
image: redis:5
ports:
- "6379:6379"
env_file:
- .env
storage:
container_name: minio
image: minio/minio
ports:
- "9000:9000"
- "9001:9001"
volumes:
- ./storage/:/storage
env_file:
- .env
command: server /storage --console-address :9001
flower:
container_name: flower
image: mher/flower
ports:
- "5555:5555"
environment:
- CELERY_BROKER=redis://redis:6379/0