feat: print message when docker-entrypoint finishes (#703)

Co-authored-by: Kévin Dunglas <kevin@dunglas.fr>
This commit is contained in:
Thomas C. 2024-11-27 15:24:19 +01:00 committed by GitHub
parent d572404fa3
commit adaa1f20cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 "$@"