mirror of https://github.com/nocodb/nocodb
o1lab
6 years ago
committed by
GitHub
1 changed files with 13 additions and 0 deletions
@ -1,3 +1,16 @@
|
||||
#!/bin/sh |
||||
# https://stackoverflow.com/questions/25503412/how-do-i-know-when-my-docker-mysql-container-is-up-and-mysql-is-ready-for-taking |
||||
|
||||
set -e |
||||
|
||||
until nc -z -v -w30 $DATABASE_HOST 3306 |
||||
do |
||||
echo "Waiting for database connection..." |
||||
# wait for 5 seconds before check again |
||||
sleep 5 |
||||
done |
||||
|
||||
echo "Mysql is up - executing command" |
||||
|
||||
cd /usr/src/app/ |
||||
node index.js -h $DATABASE_HOST -p $DATABASE_PASSWORD -d $DATABASE_NAME -u $DATABASE_USER -n 80 -r 0.0.0.0 |
||||
|
Loading…
Reference in new issue