From 0fffcd81e902c586ff4d10681e89ff1616edaf29 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 13 Jul 2026 19:30:57 +0200 Subject: [PATCH] fix: Use exec form for health check (#88) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a18ce55..49d054b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -245,7 +245,7 @@ VOLUME /var/lib/pve-cluster STOPSIGNAL SIGRTMIN+3 HEALTHCHECK --interval=60s --timeout=10s --start-period=60s --retries=3 \ - CMD curl -kLfSs http://localhost:8006 >/dev/null || exit 1 + CMD ["curl", "-kLfSs", "http://localhost:8006"] ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] CMD ["/sbin/init", "--log-target=console", "--log-level=notice"]