FIX: Localhost check replaced with IP and now should work

This commit is contained in:
2025-08-26 19:42:55 +02:00
parent 5af8be33d8
commit 2bdbf1a313

View File

@@ -11,7 +11,7 @@ services:
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000"]
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3000"]
interval: 30s
timeout: 10s
retries: 3