all-in-one/Containers/docker-socket-proxy/healthcheck.sh
Simon L 8cb1d413f8 dsp - fix healthcheck
Signed-off-by: Simon L <szaimen@e.mail.de>
2023-08-31 12:31:36 +02:00

6 lines
98 B
Bash

#!/bin/bash
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
if ! nc -z localhost 2375; then
exit 1
fi