From 233531bce55703b8634945365b0e912c2f3ae341 Mon Sep 17 00:00:00 2001 From: Edouard Vanbelle <15628033+EdouardVanbelle@users.noreply.github.com> Date: Mon, 8 Jun 2026 15:25:39 +0200 Subject: [PATCH] chore(docker): fix docker healthcheck (#435) - fix #418 --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4a1d3353..241a4422 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: volumes: - storage_data:/app/storage healthcheck: - test: ["CMD-SHELL", "wget -qO- http://localhost:8086/ready || exit 1"] + test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8086/ready || exit 1"] interval: 30s timeout: 5s start_period: 30s