13 lines
209 B
Bash
Executable file
13 lines
209 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -xeo pipefail
|
|
|
|
php /wait-for-db.php
|
|
|
|
if [[ ! -e storage/.docker.init ]];
|
|
then
|
|
echo "Database is not initialized yet, exiting..."
|
|
sleep 5
|
|
exit 1
|
|
fi
|
|
|
|
gosu www-data php artisan horizon
|