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 588b868 commit 4852c1aCopy full SHA for 4852c1a
api/docker/php/docker-entrypoint.sh
@@ -14,7 +14,7 @@ if [ "$1" = 'php-fpm' ] || [ "$1" = 'bin/console' ]; then
14
if [ "$APP_ENV" != 'prod' ]; then
15
composer install --prefer-dist --no-progress --no-suggest --no-interaction
16
>&2 echo "Waiting for Postgres to be ready..."
17
- until bin/console doctrine:query:sql "SELECT 1" --quiet; do
+ until bin/console doctrine:query:sql "SELECT 1" &> /dev/null; do
18
sleep 1
19
done
20
bin/console doctrine:schema:update --force --no-interaction
0 commit comments