From a062cbbf5d7f1c24883112f478b823dffca1e10c Mon Sep 17 00:00:00 2001 From: PM Extra Date: Tue, 24 Nov 2020 05:17:19 +0800 Subject: [PATCH] Fix docker healthcheck. (#11747) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b36744e89..53a2abc0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -108,7 +108,7 @@ WORKDIR /app USER superset -HEALTHCHECK CMD ["curl", "-f", "http://localhost:8088/health"] +HEALTHCHECK CMD ["curl", "-f", "http://localhost:$$SUPERSET_PORT/health"] EXPOSE ${SUPERSET_PORT}