1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

fix nginx healthcheck

This commit is contained in:
Kyle Spearrin 2019-07-27 21:53:49 -04:00
parent 9dc0b2d627
commit 8dabba984d

View File

@ -20,6 +20,6 @@ EXPOSE 8443
RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -L -f http://localhost:8080/alive || exit 1
HEALTHCHECK CMD curl --insecure -Lfs https://localhost:8443/alive || curl -Lfs http://localhost:8080/alive || exit 1
ENTRYPOINT ["/entrypoint.sh"]