fix: correct healthcheck endpoint to /api/health

This commit is contained in:
Implementation Engineer
2026-07-10 10:03:13 +02:00
parent 7b1bebe7da
commit 786cb0c040
+1 -1
View File
@@ -42,7 +42,7 @@ services:
- ADMIN_PASSWORD=${ADMIN_PASSWORD} - ADMIN_PASSWORD=${ADMIN_PASSWORD}
restart: unless-stopped restart: unless-stopped
healthcheck: 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 interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3