Fix healthcheck in Docker files when SYSTEM_ROOTURIPATH is specified (#5954)

This commit is contained in:
unlair
2026-04-12 22:44:04 +01:00
committed by GitHub
parent a3e45bc182
commit 3d17f0409f
21 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ services:
container_name: stirling-pdf
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:8080/api/v1/info/status | grep -q 'UP'"]
test: ["CMD-SHELL", "curl -f http://localhost:8080$${SYSTEM_ROOTURIPATH:-''}/api/v1/info/status | grep -q 'UP'"]
interval: 5s
timeout: 10s
retries: 16