From e857d28c6fde1e3ce3d049da185ee592d41055c6 Mon Sep 17 00:00:00 2001 From: Moctar Date: Thu, 14 Jan 2021 19:28:19 +0100 Subject: [PATCH] PHRAS-3336 add messages on entrypoint and phraseanet installation states --- docker/phraseanet/entrypoint.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/phraseanet/entrypoint.sh b/docker/phraseanet/entrypoint.sh index 862d4e61b8..8a21e3418e 100755 --- a/docker/phraseanet/entrypoint.sh +++ b/docker/phraseanet/entrypoint.sh @@ -49,7 +49,7 @@ if [ -f "$FILE" ]; then if [[ -n ${PHRASEANET_ADMIN_ACCOUNT_ID} && $PHRASEANET_ADMIN_ACCOUNT_ID =~ ^[0-9]+$ ]]; then bin/console user:password --user_id=$PHRASEANET_ADMIN_ACCOUNT_ID --password $PHRASEANET_ADMIN_ACCOUNT_PASSWORD -y fi - + echo "config/configuration.yml update by Phraseanet entrypoint.sh Finished !" else echo "$FILE doesn't exist, entering setup..." @@ -62,6 +62,7 @@ else datas runuser app -c docker/phraseanet/auto-install.sh + echo "End of Phraseanet Installation" fi if [ ${XDEBUG_ENABLED} == "1" ]; then @@ -88,3 +89,4 @@ fi chown -R app:app datas & bash -e docker-php-entrypoint $@ +echo "Finished runnning Phraseanet entrypoint.sh" \ No newline at end of file