851ba981f6
* Use crontab for schedules * Update apache conf file * Clean composer cache after installation * Clean apk cache after installation
13 lines
228 B
Bash
Executable File
13 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Connecting to ${DB_HOST}:${DB_PORT}"
|
|
|
|
while true; do
|
|
nc -z ${DB_HOST} ${DB_PORT} && break
|
|
echo "Waiting for ${DB_HOST}:${DB_PORT} ..."
|
|
sleep 1
|
|
done
|
|
|
|
echo "Waiting for database to settle ..."
|
|
sleep 3
|