From 786cb0c0402e6c586151a05c649db1862888d100 Mon Sep 17 00:00:00 2001 From: Implementation Engineer Date: Fri, 10 Jul 2026 10:03:13 +0200 Subject: [PATCH] fix: correct healthcheck endpoint to /api/health --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index c068c8b..967bcb4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -42,7 +42,7 @@ services: - ADMIN_PASSWORD=${ADMIN_PASSWORD} restart: unless-stopped healthcheck: - test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"] + test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/api/health')"] interval: 30s timeout: 10s retries: 3