1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-07-17 16:38:59 +00:00

fix: make sure healthcheck dont use a proxy #394

This commit is contained in:
Bastien Wirtz 2025-02-25 21:46:38 +01:00
parent bc0ceee894
commit 1c09714c43

View file

@ -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}