mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
negate second gosu
command when running as paperless user
This commit is contained in:
parent
e86f737320
commit
ea07b261ad
@ -95,11 +95,7 @@ initialize() {
|
||||
done
|
||||
set -e
|
||||
|
||||
if [ $(id -u) == $(id -u paperless) ]; then
|
||||
/sbin/docker-prepare.sh
|
||||
else
|
||||
gosu paperless /sbin/docker-prepare.sh
|
||||
fi
|
||||
${gosu_cmd[@]} /sbin/docker-prepare.sh
|
||||
}
|
||||
|
||||
install_languages() {
|
||||
@ -141,6 +137,11 @@ install_languages() {
|
||||
|
||||
echo "Paperless-ngx docker container starting..."
|
||||
|
||||
gosu_cmd=(gosu paperless)
|
||||
if [ $(id -u) == $(id -u paperless) ]; then
|
||||
gosu_cmd=()
|
||||
fi
|
||||
|
||||
# Install additional languages if specified
|
||||
if [[ -n "$PAPERLESS_OCR_LANGUAGES" ]]; then
|
||||
install_languages "$PAPERLESS_OCR_LANGUAGES"
|
||||
@ -150,7 +151,7 @@ initialize
|
||||
|
||||
if [[ "$1" != "/"* ]]; then
|
||||
echo Executing management command "$@"
|
||||
exec gosu paperless python3 manage.py "$@"
|
||||
exec ${gosu_cmd[@]} python3 manage.py "$@"
|
||||
else
|
||||
echo Executing "$@"
|
||||
exec "$@"
|
||||
|
Loading…
x
Reference in New Issue
Block a user