-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (44 loc) · 1.17 KB
/
docker-compose.yml
File metadata and controls
45 lines (44 loc) · 1.17 KB
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
# Base infrastructure only. MongoDB replica nodes and ApplicationServer are defined in
# docker-compose.generated.yml (written when a configuration template is applied).
services:
NetemHelper:
image: nicolaka/netshoot
container_name: netem-helper
pid: "host"
privileged: true
command: ["tail", "-f", "/dev/null"]
restart: no
# Regional/inter-region networks are created before `compose up` (see stack lifecycle) so subnets
# and Compose labels stay consistent. Referenced as external so Compose does not fight existing
# networks that were created outside this project or with missing labels.
networks:
amer-net:
name: amer-net
external: true
latam-net:
name: latam-net
external: true
emea-net:
name: emea-net
external: true
apac-net:
name: apac-net
external: true
amer-emea-net:
name: amer-emea-net
external: true
amer-apac-net:
name: amer-apac-net
external: true
amer-latam-net:
name: amer-latam-net
external: true
latam-emea-net:
name: latam-emea-net
external: true
latam-apac-net:
name: latam-apac-net
external: true
emea-apac-net:
name: emea-apac-net
external: true