ffix nextcloud health check

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-06-15 16:12:36 +02:00
parent 276a85421a
commit dd053182f9

View file

@ -2,6 +2,6 @@
nc -z "$POSTGRES_HOST" 5432 || exit 0
if ! nc -z localhost 9000 || ! nc -z localhost 7867; then
if ! nc -z localhost 9000; then
exit 1
fi