We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80dc4fb commit 3445aacCopy full SHA for 3445aac
docker/php/docker-entrypoint.sh
@@ -29,7 +29,7 @@ if [ "$1" = 'php-fpm' ] || [ "$1" = 'php' ] || [ "$1" = 'bin/console' ]; then
29
composer install --prefer-dist --no-progress --no-interaction
30
fi
31
32
- if grep -q DATABASE_URL= .env; then
+ if grep -q ^DATABASE_URL= .env; then
33
echo "Waiting for db to be ready..."
34
ATTEMPTS_LEFT_TO_REACH_DATABASE=60
35
until [ $ATTEMPTS_LEFT_TO_REACH_DATABASE -eq 0 ] || bin/console doctrine:query:sql "SELECT 1" >/dev/null 2>&1; do
0 commit comments