1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00

add port to health check

This commit is contained in:
Kyle Spearrin 2019-07-26 14:24:39 -04:00
parent 2ea244c723
commit 310e0115d5

View File

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