Speed up health check (#39)

Fixes slow startup of container
This commit is contained in:
John Clayton 2019-02-07 07:31:07 -07:00 committed by GitHub
parent 0e81f12e59
commit 28699d2a36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,4 +54,4 @@ RUN \
# Save version and install
/installBinary.sh
HEALTHCHECK --interval=200s --timeout=100s CMD /healthcheck.sh || exit 1
HEALTHCHECK --interval=5s --timeout=2s --retries=20 CMD /healthcheck.sh || exit 1