paperless_cmd.sh: use exec to run supervisord

Without exec, signals aren't passed through properly. Stopping the
container won't have any effect unless killed.

closes #1616
This commit is contained in:
lemmi 2022-09-20 12:13:40 +02:00 committed by Trenton H
parent b8e7f0b45f
commit 27906df149

View File

@ -12,4 +12,4 @@ if [ "$(id -u)" == "$(id -u paperless)" ]; then
)
fi
/usr/local/bin/supervisord -c /etc/supervisord.conf "${rootless_args[@]}"
exec /usr/local/bin/supervisord -c /etc/supervisord.conf "${rootless_args[@]}"