From 310e0115d589571427148a2bee10547f66517a21 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 26 Jul 2019 14:24:39 -0400 Subject: [PATCH] add port to health check --- util/Nginx/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/Nginx/Dockerfile b/util/Nginx/Dockerfile index 9cb8e39b32..47fcea3b67 100644 --- a/util/Nginx/Dockerfile +++ b/util/Nginx/Dockerfile @@ -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"]