mirror of
https://github.com/dragonflydb/dragonfly
synced 2024-11-21 15:11:20 +00:00
fix(docker/healthcheck): run netstat port retreival command as dfly (#3647)
* fix(docker/healthcheck): run netstat port retreival command as dfly
This commit is contained in:
parent
7e3e4c507e
commit
65f96e3bb5
@ -6,7 +6,7 @@ PORT=$HEALTHCHECK_PORT
|
||||
if [ -z "$HEALTHCHECK_PORT" ]; then
|
||||
# check all the TCP listening sockets, filter the dragonfly process, and fetch the port.
|
||||
# For cases when dragonfly opens multiple ports, we filter with tail to choose one of them.
|
||||
PORT=$(netstat -tlnp | grep "1/dragonfly" | grep -oE ':[0-9]+' | cut -c2- | tail -n 1)
|
||||
PORT=$(su dfly -c "netstat -tlnp" | grep "1/dragonfly" | grep -oE ':[0-9]+' | cut -c2- | tail -n 1)
|
||||
fi
|
||||
|
||||
# If we're running with TLS enabled, utilise OpenSSL for the check
|
||||
|
Loading…
Reference in New Issue
Block a user