feat: add env allowing paperless to run in read_only filesystem (#5596)

This commit is contained in:
Henrik Gerdes
2024-02-01 21:42:23 +01:00
committed by GitHub
parent 2aced1c305
commit 9d84e95771
2 changed files with 9 additions and 2 deletions

View File

@@ -1,14 +1,15 @@
#!/usr/bin/env bash
SUPERVISORD_WORKING_DIR="${PAPERLESS_SUPERVISORD_WORKING_DIR:-$PWD}"
rootless_args=()
if [ "$(id -u)" == "$(id -u paperless)" ]; then
rootless_args=(
--user
paperless
--logfile
supervisord.log
"${SUPERVISORD_WORKING_DIR}/supervisord.log"
--pidfile
supervisord.pid
"${SUPERVISORD_WORKING_DIR}/supervisord.pid"
)
fi