From 1c09714c438402b5bf1d343585fc88625c7ddb36 Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Tue, 25 Feb 2025 21:46:38 +0100 Subject: [PATCH] fix: make sure healthcheck dont use a proxy #394 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a5557c8..99ea180 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,7 @@ COPY --from=build-stage --chown=${UID}:${GID} /app/dist/assets /www/default-asse USER ${UID}:${GID} HEALTHCHECK --start-period=10s --start-interval=1s --interval=30s --timeout=5s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1 + CMD wget --no-verbose -Y off --tries=1 --spider http://127.0.0.1:${PORT}/ || exit 1 EXPOSE ${PORT}