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 99c6366 commit 3c2ecb5Copy full SHA for 3c2ecb5
tests/wait-for-mysql.sh
@@ -3,6 +3,6 @@
3
CONTAINER="mysql"
4
USERNAME="test"
5
PASSWORD="test"
6
-while ! docker exec $CONTAINER mysql --user=$USERNAME --password=$PASSWORD -e "SELECT 1" >/dev/null 2>&1; do
+while ! docker exec $CONTAINER mysql --host=127.0.0.1 --port=3306 --user=$USERNAME --password=$PASSWORD -e "SELECT 1" >/dev/null 2>&1; do
7
sleep 1
8
done
0 commit comments