From 4d0baeb55bf5da5478b609e7b874f54789058ea2 Mon Sep 17 00:00:00 2001 From: angestoepselt-bot Date: Sun, 16 Oct 2022 20:49:41 +0200 Subject: [PATCH] change healthcheck curl was mssing in Image, changed healthcheck to existing wget --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 487d897..80f6191 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,7 +51,7 @@ ENV ZAMMAD_URL=https://ticket.z31.it ENV ZAMMAD_GROUP="" HEALTHCHECK --interval=30s --timeout=10s --retries=3 \ - CMD curl --fail localhost || exit 1 + CMD wget --no-verbose --tries=1 --spider http://localhost/ || exit 1 # Reroute stdout to a new file descriptor so that Lighttpd can use it as the # access log. See http.conf and here: