-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocal-with-ifcbdashboard.yml
83 lines (73 loc) · 1.76 KB
/
local-with-ifcbdashboard.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
version: "3.7"
volumes:
local_postgres_data: {}
local_postgres_data_backups: {}
node_modules: {}
services:
react_frontend:
build:
context: .
dockerfile: ./compose/local/react-frontend/Dockerfile
image: habhub_local_react_frontend
volumes:
- ./habhub-react-frontend:/usr/src/app:z
- /usr/src/app/node_modules #<- Use anonymous volume to keep node_modules directory
ports:
- "3000:3000"
command: npm start
django: &django
build:
context: .
dockerfile: ./compose/local/django/Dockerfile
image: habhub_local_django
depends_on:
- postgres_habhub
volumes:
- ./habhub-dataserver:/app
env_file:
- ./habhub-dataserver/.envs/.local/.django
- ./habhub-dataserver/.envs/.local/.postgres
ports:
- "8888:8000"
command: /start
postgres_habhub:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: habhub_production_postgres
volumes:
- local_postgres_data:/var/lib/postgresql/data
- local_postgres_data_backups:/backups
ports:
- "5432:5432"
env_file:
- ./habhub-dataserver/.envs/.local/.postgres
celeryworker:
<<: *django
image: habhub_local_celeryworker
depends_on:
- redis_habhub
- postgres_habhub
ports: []
command: /start-celeryworker
celerybeat:
<<: *django
image: habhub_local_celerybeat
depends_on:
- redis_habhub
- postgres_habhub
ports: []
command: /start-celerybeat
redis_habhub:
image: redis:6.0
restart: unless-stopped
flower:
<<: *django
container_name: django_flower
ports:
- "5555:5555"
command: /start-flower
networks:
default:
external:
name: ifcbdb_nginx_network