summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/filebin_starter.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/docker/filebin_starter.sh b/docker/filebin_starter.sh
index 65cf4a44b..4fa50d583 100755
--- a/docker/filebin_starter.sh
+++ b/docker/filebin_starter.sh
@@ -12,6 +12,13 @@ function set_database_config() {
sed -i "s/\$db\['default'\]\['database'\] = .*/\$db['default']['database'] = \"${FB_DB_DATABASE}\";/" ${FILEBIN_DIR}/application/config/database.php
}
+# wait for DB to be ready
+while ! nc "$FB_DB_HOSTNAME" 3306 </dev/null >/dev/null; do
+ echo "Waiting for database"
+ sleep 0.5
+done
+
+
if [[ ! -e $FILEBIN_DIR/application/config/config-local.php ]]; then
echo "no config found, new config will be generated"
cp $FILEBIN_DIR/application/config/example/config-local.php ${FILEBIN_DIR}/application/config/config-local.php