From c19f13edc17b17a8403aaf945df65edeb80b20b1 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Sat, 25 Jan 2025 22:36:48 -0600 Subject: [PATCH] wip --- docker/entrypoint.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 3a8dbe1..fda013f 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -8,16 +8,17 @@ run_as_www_user() { } if [[ -z "$APP_KEY" ]]; then - echo " > The required APP_KEY configuration is missing in your .env file. Copy and paste this key into your .env file. Then restart the container!" + echo " > The required APP_KEY configuration is missing in your .env file. " + echo " > Copy and paste this key into your .env file. Then restart the container! " draw_box() { local text="$1" local length=${#text} local border=$(printf '%*s' "$((length + 4))" | tr ' ' '*') - echo "*$border*" + echo "$border" echo "* $text *" - echo "*$border*" + echo "$border" } draw_box "base64:$(openssl rand -base64 32)"