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
|
done
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ $(id -u) == $(id -u paperless) ]; then
|
${gosu_cmd[@]} /sbin/docker-prepare.sh
|
||||||
/sbin/docker-prepare.sh
|
|
||||||
else
|
|
||||||
gosu paperless /sbin/docker-prepare.sh
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
install_languages() {
|
install_languages() {
|
||||||
@ -141,6 +137,11 @@ install_languages() {
|
|||||||
|
|
||||||
echo "Paperless-ngx docker container starting..."
|
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
|
# Install additional languages if specified
|
||||||
if [[ -n "$PAPERLESS_OCR_LANGUAGES" ]]; then
|
if [[ -n "$PAPERLESS_OCR_LANGUAGES" ]]; then
|
||||||
install_languages "$PAPERLESS_OCR_LANGUAGES"
|
install_languages "$PAPERLESS_OCR_LANGUAGES"
|
||||||
@ -150,7 +151,7 @@ initialize
|
|||||||
|
|
||||||
if [[ "$1" != "/"* ]]; then
|
if [[ "$1" != "/"* ]]; then
|
||||||
echo Executing management command "$@"
|
echo Executing management command "$@"
|
||||||
exec gosu paperless python3 manage.py "$@"
|
exec ${gosu_cmd[@]} python3 manage.py "$@"
|
||||||
else
|
else
|
||||||
echo Executing "$@"
|
echo Executing "$@"
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user