Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 19a2339

Browse files
committedNov 8, 2021
increasing interval and timeout on docker build
1 parent d2431dd commit 19a2339

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed
 

‎docker-compose.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ services:
1313
command: mock docs/core.yml -p 4200 -h 0.0.0.0
1414
healthcheck:
1515
test: ["CMD-SHELL", "curl -f http://core:4200 || exit 1"]
16-
interval: 10s
17-
timeout: 5s
16+
interval: 30s
17+
timeout: 15s
1818
retries: 3
1919
networks:
2020
- api-integration-test-network
@@ -31,8 +31,8 @@ services:
3131
command: mock docs/alerts.yml -p 4201 -h 0.0.0.0
3232
healthcheck:
3333
test: ["CMD-SHELL", "curl -f http://alerts:4201 || exit 1"]
34-
interval: 10s
35-
timeout: 5s
34+
interval: 30s
35+
timeout: 15s
3636
retries: 3
3737
networks:
3838
- api-integration-test-network
@@ -49,8 +49,8 @@ services:
4949
command: mock docs/alert-rules.yml -p 4202 -h 0.0.0.0
5050
healthcheck:
5151
test: ["CMD-SHELL", "curl -f http://alert-rules:4202 || exit 1"]
52-
interval: 10s
53-
timeout: 5s
52+
interval: 30s
53+
timeout: 15s
5454
retries: 3
5555
networks:
5656
- api-integration-test-network
@@ -67,8 +67,8 @@ services:
6767
command: mock docs/detection-lists.yml -p 4203 -h 0.0.0.0
6868
healthcheck:
6969
test: ["CMD-SHELL", "curl -f http://detection-lists:4203 || exit 1"]
70-
interval: 10s
71-
timeout: 5s
70+
interval: 30s
71+
timeout: 15s
7272
retries: 3
7373
networks:
7474
- api-integration-test-network
@@ -85,8 +85,8 @@ services:
8585
command: mock docs/cases.yml -p 4204 -h 0.0.0.0
8686
healthcheck:
8787
test: ["CMD-SHELL", "curl -f http://cases:4204 || exit 1"]
88-
interval: 10s
89-
timeout: 5s
88+
interval: 30s
89+
timeout: 15s
9090
retries: 3
9191
networks:
9292
- api-integration-test-network
@@ -103,8 +103,8 @@ services:
103103
command: mock docs/storage.yml -p 4205 -h 0.0.0.0
104104
healthcheck:
105105
test: ["CMD-SHELL", "curl -f http://storage:4205 || exit 1"]
106-
interval: 10s
107-
timeout: 5s
106+
interval: 30s
107+
timeout: 15s
108108
retries: 3
109109
networks:
110110
- api-integration-test-network
@@ -121,8 +121,8 @@ services:
121121
command: mock docs/connected-server.yml -p 4206 -h 0.0.0.0
122122
healthcheck:
123123
test: ["CMD-SHELL", "curl -f http://connected-server:4206 || exit 1"]
124-
interval: 10s
125-
timeout: 5s
124+
interval: 30s
125+
timeout: 15s
126126
retries: 3
127127
networks:
128128
- api-integration-test-network
@@ -139,8 +139,8 @@ services:
139139
command: mock docs/audit-log.yml -p 4207 -h 0.0.0.0
140140
healthcheck:
141141
test: ["CMD-SHELL", "curl -f http://audit-log:4207 || exit 1"]
142-
interval: 10s
143-
timeout: 5s
142+
interval: 30s
143+
timeout: 15s
144144
retries: 3
145145
networks:
146146
- api-integration-test-network
@@ -157,8 +157,8 @@ services:
157157
command: mock docs/file-events.yml -p 4208 -h 0.0.0.0
158158
healthcheck:
159159
test: ["CMD-SHELL", "curl -f http://file-events:4208 || exit 1"]
160-
interval: 10s
161-
timeout: 5s
160+
interval: 30s
161+
timeout: 15s
162162
retries: 3
163163
networks:
164164
- api-integration-test-network
@@ -175,8 +175,8 @@ services:
175175
command: mock docs/preservation-data-service.yml -p 4209 -h 0.0.0.0
176176
healthcheck:
177177
test: ["CMD-SHELL", "curl -f http://preservation-data-service:4209 || exit 1"]
178-
interval: 10s
179-
timeout: 5s
178+
interval: 30s
179+
timeout: 15s
180180
retries: 3
181181
networks:
182182
- api-integration-test-network
@@ -193,8 +193,8 @@ services:
193193
command: mock docs/exfiltration-data-service.yml -p 4210 -h 0.0.0.0
194194
healthcheck:
195195
test: ["CMD-SHELL", "curl -f http://exfiltration-data-service:4210 || exit 1"]
196-
interval: 10s
197-
timeout: 5s
196+
interval: 30s
197+
timeout: 15s
198198
retries: 3
199199
networks:
200200
- api-integration-test-network
@@ -211,8 +211,8 @@ services:
211211
command: mock docs/trusted-activities.yml -p 4211 -h 0.0.0.0
212212
healthcheck:
213213
test: ["CMD-SHELL", "curl -f http://trusted-activities:4211 || exit 1"]
214-
interval: 10s
215-
timeout: 5s
214+
interval: 30s
215+
timeout: 15s
216216
retries: 3
217217
networks:
218218
- api-integration-test-network

0 commit comments

Comments
 (0)
Please sign in to comment.