Flip docker container healthcheck https first

This commit is contained in:
JonnyWong16 2024-11-28 16:36:03 -08:00
parent 78864d7a97
commit 37ef098718
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -25,4 +25,4 @@ CMD [ "python", "Tautulli.py", "--datadir", "/config" ]
ENTRYPOINT [ "./start.sh" ]
EXPOSE 8181
HEALTHCHECK --start-period=90s CMD curl -ILfSs http://localhost:8181/status > /dev/null || curl -ILfkSs https://localhost:8181/status > /dev/null || exit 1
HEALTHCHECK --start-period=90s CMD curl -ILfks https://localhost:8181/status > /dev/null || curl -ILfs http://localhost:8181/status > /dev/null || exit 1