Merge pull request #6566 from nextcloud/fix/nextcloud-container-stuck-terminating

fix: nextcloud container sometimes becoming stuck terminating
This commit is contained in:
Simon L.
2025-06-20 10:10:06 +02:00
committed by GitHub

View File

@@ -26,4 +26,11 @@ else
fi
fi
sleep inf
signal_handler() {
exit 0
}
trap signal_handler SIGINT SIGTERM
sleep inf &
wait $!