Fix wget healthchecks to not use localhost

For a reason, current wget versions error out when using localhost instead
of 127.0.0.1 as the healthcheck for docker services. Probably has something
to do with dns resolution - either on docker or wget end, but have not
looked to deep into it.
This commit is contained in:
Marty Oehme 2024-04-11 13:04:28 +02:00
parent bc7796710a
commit d3f65a07fb
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
8 changed files with 8 additions and 8 deletions

View file

@ -7,7 +7,7 @@ services:
- backend
- "{{ docker_swarm_public_network_name }}"
healthcheck:
test: ["CMD", "wget", "--quiet", "--spider", "--tries=1", "http://localhost:2019/metrics"]
test: ["CMD", "wget", "--quiet", "--spider", "--tries=1", "http://127.0.0.1:2019/metrics"]
interval: 1m
timeout: 10s
retries: 3