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
commit 31b55a9aef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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