-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml-dev
80 lines (71 loc) · 1.47 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
# 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,
# varfish-server, postgres, redis, ...
# - expose the containers that you need runing in docker at the following
# ports:
# - `3001` -- annonars
# - `3002` -- mehari
# - `3003` -- viguno
# - `3004` -- nginx
# - `3010` -- minio
# - `3011` -- minio console
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 Minio S3 to port 9000 and console to 9001
minio:
ports:
- "3010:9000"
- "3011:9001"
# disable traefik
traefik:
deploy:
replicas: 0
# disable postgres
postgres:
deploy:
replicas: 0
# disable redis
redis:
deploy:
replicas: 0
# disable varfish containers
varfish-web:
deploy:
replicas: 0
varfish-celerybeat:
deploy:
replicas: 0
varfish-celeryd-default:
deploy:
replicas: 0
varfish-celeryd-query:
deploy:
replicas: 0
varfish-celeryd-import:
deploy:
replicas: 0
varfish-celeryd-export:
deploy:
replicas: 0
varfish-celeryd-maintenance:
deploy:
replicas: 0