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 aaac96d commit fee9f6dCopy full SHA for fee9f6d
docker-entrypoint.sh
@@ -86,7 +86,7 @@ sed -ie "s/single/errorlog/g" config/app.php
86
fi
87
88
89
-echoerr wait-for-db: waiting for ${DB_HOST_NAME}:${DB_PORT}
+echoerr "wait-for-db: waiting for ${DB_HOST_NAME}:${DB_PORT}"
90
91
timeout 15 bash <<EOT
92
while ! (echo > /dev/tcp/${DB_HOST_NAME}/${DB_PORT}) >/dev/null 2>&1;
@@ -98,9 +98,9 @@ RESULT=$?
98
if [ $RESULT -eq 0 ]; then
99
# sleep another second for so that we don't get a "the database system is starting up" error
100
sleep 1
101
- echoerr wait-for-db: done
+ echoerr "wait-for-db: done"
102
else
103
- echoerr wait-for-db: timeout out after 15 seconds waiting for ${DB_HOST_NAME}:${DB_PORT}
+ echoerr "wait-for-db: timeout out after 15 seconds waiting for ${DB_HOST_NAME}:${DB_PORT}"
104
105
106
composer install
0 commit comments