change healthcheck

curl was mssing in Image, changed healthcheck to existing wget
This commit is contained in:
angestoepselt-bot 2022-10-16 20:49:41 +02:00 committed by Yannik Rödel
parent ea014f2af3
commit 4d0baeb55b

View file

@ -51,7 +51,7 @@ ENV ZAMMAD_URL=https://ticket.z31.it
ENV ZAMMAD_GROUP="" ENV ZAMMAD_GROUP=""
HEALTHCHECK --interval=30s --timeout=10s --retries=3 \ 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 # Reroute stdout to a new file descriptor so that Lighttpd can use it as the
# access log. See http.conf and here: # access log. See http.conf and here: