dockerized_nfs_server
dockerized_nfs_server copied to clipboard
SIGTERM is not handled
The entrypoint run.sh
ignores TERM signals. As a simple fix, one can change the last lines to
sleep infinity &
wait
This does not avoid all possible races but covers 99% of the real-world cases. See https://unix.stackexchange.com/a/444676 for the full story.