-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
101 lines (90 loc) · 1.83 KB
/
docker-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
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
version: "3"
services:
server1:
image: annieka/server_image
hostname: NATIVE
expose:
- 9090/udp
environment:
- PORT=9090
- MULTICAST_PORT=10000
- MULTICAST_ADRESS=224.3.29.71
- TYPE=NATIVE
server2:
image: annieka/server_image
hostname: JSON
expose:
- 9091/udp
environment:
- PORT=9091
- MULTICAST_PORT=10000
- MULTICAST_ADRESS=224.3.29.71
- TYPE=JSON
server3:
image: annieka/server_image
hostname: XML
expose:
- 9092/udp
environment:
- PORT=9092
- MULTICAST_PORT=10000
- MULTICAST_ADRESS=224.3.29.71
- TYPE=XML
server4:
image: annieka/server_image
hostname: GOOGLE_BUFFER
expose:
- 9093/udp
environment:
- PORT=9093
- MULTICAST_PORT=10000
- MULTICAST_ADRESS=224.3.29.71
- TYPE=GOOGLE_BUFFER
server5:
image: annieka/server_image
hostname: APACHE
expose:
- 9094/udp
environment:
- PORT=9094
- MULTICAST_PORT=10000
- MULTICAST_ADRESS=224.3.29.71
- TYPE=APACHE
server6:
image: annieka/server_image
hostname: YAML
expose:
- 9095/udp
environment:
- PORT=9095
- MULTICAST_PORT=10000
- MULTICAST_ADRESS=224.3.29.71
- TYPE=YAML
server7:
image: annieka/server_image
hostname: MESSAGEPACK
expose:
- 9096/udp
environment:
- PORT=9096
- MULTICAST_PORT=10000
- MULTICAST_ADRESS=224.3.29.71
- TYPE=MESSAGEPACK
client:
image: annieka/client_image
expose:
- 2000/udp
ports:
- 2000:2000/udp
depends_on:
- server1
- server2
- server3
- server4
- server5
- server6
- server7
environment:
- PORT=2000
- MULTICAST_PORT=10000
- MULTICAST_ADRESS=224.3.29.71