Merge pull request #47 from agentsas/master

Ignore proxy settings during healthcheck
This commit is contained in:
Joshua M. Boniface 2024-11-09 10:08:14 -05:00 committed by GitHub
commit c35f012e85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -207,4 +207,4 @@ VOLUME ${JELLYFIN_DATA_DIR} ${JELLYFIN_CACHE_DIR}
ENTRYPOINT ["/jellyfin/jellyfin"]
HEALTHCHECK --interval=30s --timeout=30s --start-period=10s --retries=3 \
CMD curl -Lk -fsS "${HEALTHCHECK_URL}" || exit 1
CMD curl --noproxy 'localhost' -Lk -fsS "${HEALTHCHECK_URL}" || exit 1