From e56a01f42d9418a3cfff3b0622a33fad497b874c Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 11 Dec 2024 15:17:36 +0100 Subject: [PATCH] chore: remove default healthcheck in docker The healtcheck takes really long to initialize, which might cause unnecessary downtime. This removes the default healthcheck from the dockerfile to avoid that for all users. It is still possible to add the healthcheck manually. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ba698125c..4ef7957d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,5 +53,3 @@ ENV VIKUNJA_DATABASE_PATH=/db/vikunja.db COPY --from=apibuilder /build/vikunja-* vikunja COPY --from=apibuilder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ -HEALTHCHECK --interval=5s --timeout=30s --start-period=10s --retries=3 \ - CMD [ "/app/vikunja/vikunja", "healthcheck" ] \ No newline at end of file