-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-test.yaml
More file actions
249 lines (235 loc) · 5.39 KB
/
docker-compose-test.yaml
File metadata and controls
249 lines (235 loc) · 5.39 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
name: tp1
services:
rabbitmq:
container_name: rabbitmq
build:
context: ./src/rabbitmq
dockerfile: Dockerfile
image: rabbitmq:latest
command: sh -c "rabbitmq-server > /dev/null 2>&1"
ports:
- "5670:5672"
- "15670:15672"
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "ping"]
interval: 10s
timeout: 10s
start_period: 15s
retries: 5
networks:
- tp_net
gateway:
container_name: gateway
build:
dockerfile: ./src/gateway/Dockerfile
image: gateway:latest
environment:
- MAX_CONTROLLER_NODES=3
ports:
- "8080:8080"
- "8081:8081"
volumes:
- ./src/gateway/config.yaml:/app/config.yaml
depends_on:
rabbitmq:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8081/ping"]
interval: 10s
timeout: 5s
retries: 5
start_period: 10s
networks:
- tp_net
controller1:
container_name: controller1
build:
dockerfile: ./src/controller/Dockerfile
image: controller:latest
volumes:
- ./src/controller/config.yaml:/app/config.yaml
- ./.storage/controller1:/app/storage
environment:
- ID=controller1
depends_on:
rabbitmq:
condition: service_healthy
networks:
- tp_net
controller2:
container_name: controller2
build:
dockerfile: ./src/controller/Dockerfile
image: controller:latest
volumes:
- ./src/controller/config.yaml:/app/config.yaml
- ./.storage/controller2:/app/storage
environment:
- ID=controller2
depends_on:
rabbitmq:
condition: service_healthy
networks:
- tp_net
controller3:
container_name: controller3
build:
dockerfile: ./src/controller/Dockerfile
image: controller:latest
volumes:
- ./src/controller/config.yaml:/app/config.yaml
- ./.storage/controller3:/app/storage
environment:
- ID=controller3
depends_on:
rabbitmq:
condition: service_healthy
networks:
- tp_net
aggregator:
container_name: aggregator
build:
dockerfile: ./src/aggregator/Dockerfile
image: aggregator:latest
networks:
- tp_net
environment:
- ID=aggregator
volumes:
- ./src/aggregator/config.yaml:/app/config.yaml
- ./.storage/aggregator:/app/storage
depends_on:
rabbitmq:
condition: service_healthy
filter1:
container_name: filter1
build:
dockerfile: ./src/filter/Dockerfile
args:
BUILD_TAGS: "poison low_prob"
image: filter:latest
networks:
- tp_net
volumes:
- ./src/filter/config.yaml:/app/config.yaml
environment:
- ID=filter1
depends_on:
rabbitmq:
condition: service_healthy
filter2:
container_name: filter2
build:
dockerfile: ./src/filter/Dockerfile
args:
BUILD_TAGS: "poison low_prob"
image: filter:latest
networks:
- tp_net
volumes:
- ./src/filter/config.yaml:/app/config.yaml
environment:
- ID=filter2
depends_on:
rabbitmq:
condition: service_healthy
joiner1:
container_name: joiner1
build:
dockerfile: ./src/joiner/Dockerfile
image: joiner:latest
networks:
- tp_net
environment:
- ID=joiner1
volumes:
- ./src/joiner/config.yaml:/app/config.yaml
- ./.storage/joiner1:/app/storage
depends_on:
rabbitmq:
condition: service_healthy
joiner2:
container_name: joiner2
build:
dockerfile: ./src/joiner/Dockerfile
image: joiner:latest
networks:
- tp_net
environment:
- ID=joiner2
volumes:
- ./src/joiner/config.yaml:/app/config.yaml
- ./.storage/joiner2:/app/storage
depends_on:
rabbitmq:
condition: service_healthy
reducer1:
container_name: reducer1
build:
dockerfile: ./src/reducer/Dockerfile
args:
BUILD_TAGS: "poison low_prob"
image: reducer:latest
networks:
- tp_net
volumes:
- ./src/reducer/config.yaml:/app/config.yaml
environment:
- ID=reducer1
depends_on:
rabbitmq:
condition: service_healthy
reducer2:
container_name: reducer2
build:
dockerfile: ./src/reducer/Dockerfile
args:
BUILD_TAGS: "poison low_prob"
image: reducer:latest
networks:
- tp_net
volumes:
- ./src/reducer/config.yaml:/app/config.yaml
environment:
- ID=reducer2
depends_on:
rabbitmq:
condition: service_healthy
group_by1:
container_name: group_by1
build:
dockerfile: ./src/group_by/Dockerfile
args:
BUILD_TAGS: "poison low_prob"
image: group_by:latest
networks:
- tp_net
volumes:
- ./src/group_by/config.yaml:/app/config.yaml
environment:
- ID=group_by1
depends_on:
rabbitmq:
condition: service_healthy
group_by2:
container_name: group_by2
build:
dockerfile: ./src/group_by/Dockerfile
args:
BUILD_TAGS: "poison low_prob"
image: group_by:latest
networks:
- tp_net
volumes:
- ./src/group_by/config.yaml:/app/config.yaml
environment:
- ID=group_by2
depends_on:
rabbitmq:
condition: service_healthy
networks:
tp_net:
ipam:
driver: default
config:
- subnet: 172.25.125.0/24