From adaa1f20cf3cf44c82b7b0a2a9ad17b459f0cf58 Mon Sep 17 00:00:00 2001 From: "Thomas C." <95548437+tcoch@users.noreply.github.com> Date: Wed, 27 Nov 2024 15:24:19 +0100 Subject: [PATCH] feat: print message when docker-entrypoint finishes (#703) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Kévin Dunglas --- frankenphp/docker-entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frankenphp/docker-entrypoint.sh b/frankenphp/docker-entrypoint.sh index ab74418c..c62faad9 100755 --- a/frankenphp/docker-entrypoint.sh +++ b/frankenphp/docker-entrypoint.sh @@ -55,6 +55,8 @@ if [ "$1" = 'frankenphp' ] || [ "$1" = 'php' ] || [ "$1" = 'bin/console' ]; then setfacl -R -m u:www-data:rwX -m u:"$(whoami)":rwX var setfacl -dR -m u:www-data:rwX -m u:"$(whoami)":rwX var + + echo 'PHP app ready!' fi exec docker-php-entrypoint "$@"