7 lines
143 B
Bash
Executable file
7 lines
143 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
until nc -z -v -w30 "${DATABASE_HOST:=mysql_test}" 3306
|
|
do
|
|
echo "Waiting for database connection..."
|
|
sleep 1
|
|
done
|