fix(NGINX): fix healthcheck URL

This commit is contained in:
Asif Bacchus 2021-01-05 18:24:58 -07:00
parent 530b4ce476
commit c683856959
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ RUN apk --no-cache add git \
# health check
HEALTHCHECK --interval=60s --timeout=5s --start-period=30s --retries=3 \
CMD curl --fail http://127.0.0.1:9000 || exit 1
CMD curl --fail http://127.0.0.1:9000/nginx_status || exit 1
# standardized labels
LABEL author="Asif Bacchus <asif@bacchus.cloud>"