From deb9698ff67917489adcc3e35544f77b0fa116dd Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Wed, 13 Jan 2021 19:58:09 +0100 Subject: [PATCH] added some messages to the docker startup script --- docker/docker-entrypoint.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docker/docker-entrypoint.sh b/docker/docker-entrypoint.sh index 13a0ba035..8e1a21757 100644 --- a/docker/docker-entrypoint.sh +++ b/docker/docker-entrypoint.sh @@ -62,6 +62,7 @@ migrations() { # simultaneously. This also ensures that the db is ready when the command # of the current container starts. flock 200 + echo "Apply database migrations..." sudo -HEu paperless python3 manage.py migrate ) 200>/usr/src/paperless/data/migration_lock @@ -85,6 +86,8 @@ initialize() { } install_languages() { + echo "Installing languages..." + local langs="$1" read -ra langs <<<"$langs" @@ -119,6 +122,8 @@ install_languages() { done } +echo "Paperless-ng docker container starting..." + # Install additional languages if specified if [[ ! -z "$PAPERLESS_OCR_LANGUAGES" ]]; then install_languages "$PAPERLESS_OCR_LANGUAGES" @@ -127,8 +132,10 @@ fi initialize if [[ "$1" != "/"* ]]; then + echo Executing management command "$@" exec sudo -HEu paperless python3 manage.py "$@" else + echo Executing "$@" exec "$@" fi