@@ -8,18 +8,30 @@ services:
8
8
ports :
9
9
- " 4200:4200"
10
10
depends_on :
11
- - core
12
- - alerts
13
- - alert_rules
14
- - detection_lists
15
- - cases
16
- - storage
17
- - connected_server
18
- - audit_log
19
- - file_events
20
- - preservation_data_service
21
- - exfiltration_data_service
22
- - trusted_activities
11
+ core :
12
+ condition : service_healthy
13
+ alerts :
14
+ condition : service_healthy
15
+ alert-rules :
16
+ condition : service_healthy
17
+ detection-lists :
18
+ condition : service_healthy
19
+ cases :
20
+ condition : service_healthy
21
+ storage :
22
+ condition : service_healthy
23
+ connected-server :
24
+ condition : service_healthy
25
+ audit-log :
26
+ condition : service_healthy
27
+ file-events :
28
+ condition : service_healthy
29
+ preservation-data-service :
30
+ condition : service_healthy
31
+ exfiltration-data-service :
32
+ condition : service_healthy
33
+ trusted-activities :
34
+ condition : service_healthy
23
35
24
36
core :
25
37
image : c42/mock-microservice-endpoints:1.0
@@ -31,6 +43,7 @@ services:
31
43
command : mock docs/core.yml -p 4200 -h 0.0.0.0
32
44
healthcheck :
33
45
test : ["CMD-SHELL", "curl -f http://core:4200 || exit 1"]
46
+ # test: ["CMD-SHELL", "curl -f http://localhost:4200/core || exit 1"]
34
47
interval : 30s
35
48
timeout : 15s
36
49
retries : 3
@@ -214,35 +227,35 @@ services:
214
227
- api-integration-test-network
215
228
216
229
217
- health_checker :
218
- image : c42/mock-microservice-endpoints:1.0
219
- entrypoint : ["echo", "All mock server containers are responding to requests!"]
220
- container_name : " health_checker"
221
- depends_on :
222
- core :
223
- condition : service_healthy
224
- alerts :
225
- condition : service_healthy
226
- alert-rules :
227
- condition : service_healthy
228
- detection-lists :
229
- condition : service_healthy
230
- cases :
231
- condition : service_healthy
232
- storage :
233
- condition : service_healthy
234
- connected-server :
235
- condition : service_healthy
236
- audit-log :
237
- condition : service_healthy
238
- file-events :
239
- condition : service_healthy
240
- preservation-data-service :
241
- condition : service_healthy
242
- exfiltration-data-service :
243
- condition : service_healthy
244
- trusted-activities :
245
- condition : service_healthy
230
+ # health_checker:
231
+ # image: c42/mock-microservice-endpoints:1.0
232
+ # entrypoint: ["echo", "All mock server containers are responding to requests!"]
233
+ # container_name: "health_checker"
234
+ # depends_on:
235
+ # core:
236
+ # condition: service_healthy
237
+ # alerts:
238
+ # condition: service_healthy
239
+ # alert-rules:
240
+ # condition: service_healthy
241
+ # detection-lists:
242
+ # condition: service_healthy
243
+ # cases:
244
+ # condition: service_healthy
245
+ # storage:
246
+ # condition: service_healthy
247
+ # connected-server:
248
+ # condition: service_healthy
249
+ # audit-log:
250
+ # condition: service_healthy
251
+ # file-events:
252
+ # condition: service_healthy
253
+ # preservation-data-service:
254
+ # condition: service_healthy
255
+ # exfiltration-data-service:
256
+ # condition: service_healthy
257
+ # trusted-activities:
258
+ # condition: service_healthy
246
259
247
260
networks :
248
261
api-integration-test-network :
0 commit comments