Skip to content

Commit 54cf2f7

Browse files
authored
Merge pull request #149 from joshuay03/use-ipv4-in-beanstalkd-health-check-test
Explicitly use IPv4 in beanstalkd, chrome container health checks
2 parents 8a0ab56 + a49d696 commit 54cf2f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ services:
173173
context: ./
174174
dockerfile: Dockerfile.beanstalkd
175175
healthcheck:
176-
test: echo -e "stats\r\n" | nc localhost 11300 || exit 1
176+
test: echo -e "stats\r\n" | nc 127.0.0.1 11300 || exit 1
177177
interval: 10s
178178
timeout: 10s
179179
retries: 3
@@ -182,7 +182,7 @@ services:
182182
chrome:
183183
image: seleniarm/standalone-chromium:latest
184184
healthcheck:
185-
test: "curl -f http://localhost:4444/ui || exit 1"
185+
test: "curl -f http://127.0.0.1:4444/ui || exit 1"
186186
interval: 10s
187187
timeout: 10s
188188
retries: 3

0 commit comments

Comments
 (0)