summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-04-19 11:30:43 +0300
committerGitHub <noreply@github.com>2022-04-19 11:30:43 +0300
commit9d13da121c801ddcdd37af79a19ab3cdc065f2ff (patch)
tree79b2031811708c76a0c081fcab95421de63735cf /packaging
parent0fe93637850064e3051046a27e71af54e0a90476 (diff)
fix: use NETDATA_LISTENER_PORT in docker healtcheck (#12676)
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/docker/health.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/packaging/docker/health.sh b/packaging/docker/health.sh
index 088a6c0d71..00adf97a68 100755
--- a/packaging/docker/health.sh
+++ b/packaging/docker/health.sh
@@ -4,7 +4,8 @@
if [ -z "${NETDATA_HEALTHCHECK_TARGET}" ] ; then
# If users didn't request something else, query `/api/v1/info`.
- NETDATA_HEALTHCHECK_TARGET="http://localhost:19999/api/v1/info"
+ PORT=${NETDATA_LISTENER_PORT:-19999}
+ NETDATA_HEALTHCHECK_TARGET="http://localhost:${PORT}/api/v1/info"
fi
case "${NETDATA_HEALTHCHECK_TARGET}" in