update wget health check based on pr comments

This commit is contained in:
Syed Qarib
2025-08-05 17:23:18 +02:00
parent f3b777d8e8
commit 9003c24808

View File

@@ -22,7 +22,7 @@ services:
networks:
- n8n-network
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:5678/healthz"]
test: ["CMD", "sh", "-c", "wget --quiet --spider --tries=1 --timeout=10 http://localhost:5678/healthz || exit 1"]
interval: 30s
timeout: 10s
retries: 3