From f83e43f41d6f3d71405fba1c4734036d3e76db1a Mon Sep 17 00:00:00 2001 From: Oliver Gut Date: Thu, 10 Oct 2024 10:36:53 +0200 Subject: [PATCH] Use api health endpoint in Docker healthcheck --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9b97237e5..93046041f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -105,7 +105,7 @@ services: db: condition: service_healthy healthcheck: - test: "curl --fail http://127.0.0.1:5000/api/v2/version || exit 1" + test: "curl --fail http://127.0.0.1:5000/health || exit 1" interval: 20s timeout: 10s retries: 30