-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.override.yml-dev
99 lines (83 loc) · 1.68 KB
/
docker-compose.override.yml-dev
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
# Docker Compose Override YAML fragment that can be used for development
#
# It will:
#
# - set the number of replicas to 0 for all containers where the equivalent
# will be run outside of docker or is not needed; this includes traefik,
# reev, postgres, redis, ...
# - expose the containers that you need runing in docker at the following
# ports:
# - `3001` -- annonars
# - `3002` -- mehari
# - `3003` -- viguno
# - `3004` -- nginx
# - `3005` -- dotty
# - `3006` -- cada-prio
# - `3020` -- postgres
# - `3030` -- redis
# - `3031` -- rabbitmq
# - `3040` -- flower
# - `3041` -- pgadmin
services:
# map annonars to port 3001
annonars:
ports:
- "3001:8080"
# map mehari to port 3002
mehari:
ports:
- "3002:8080"
# map viguno to port 3003
viguno:
ports:
- "3003:8080"
# map nginx to port 3004
nginx:
ports:
- "3004:80"
# map dotty to port 3005
dotty:
ports:
- "3005:8080"
# map cada-prio to port 3006
cada-prio:
ports:
- "3006:8080"
# map auto-acmg to port 3007
auto-acmg:
ports:
- "3007:8080"
# disable traefik
traefik:
deploy:
replicas: 0
# map postgres port to 3020
postgres:
ports:
- "3020:5432"
# map redis port to 3030
redis:
ports:
- "3030:6379"
# map rabbitmq port to 3031
rabbitmq:
ports:
- "3031:5672"
# map flower port to 3040
flower:
ports:
- "3040:5555"
# map pgadminport to 3041
pgadmin:
ports:
- "3041:80"
# no replicas of reev-*
reev-backend:
deploy:
replicas: 0
reev-celery-worker:
deploy:
replicas: 0
reev-celery-beat:
deploy:
replicas: 0