61 lines
1.8 KiB
Bash
61 lines
1.8 KiB
Bash
#!/bin/bash
|
|
|
|
cd /var/www/app
|
|
|
|
artisan_as_www_user() {
|
|
su - www-data -c "/usr/local/bin/php /var/www/app/artisan $1"
|
|
}
|
|
|
|
echo -e "\n====================== Validating environment... ====================== "
|
|
if [[ -z "$APP_KEY" ]]; then
|
|
echo " > Oops! The required APP_KEY configuration is missing in your environment! "
|
|
echo " > Generating a key (see below) but this will NOT be persisted between container restarts. "
|
|
echo " > You should set this APP_KEY in your .env file! "
|
|
|
|
draw_box() {
|
|
local text="$1"
|
|
local length=${#text}
|
|
local border=$(printf '%*s' "$((length + 4))" | tr ' ' '*')
|
|
|
|
echo "$border"
|
|
echo "* $text *"
|
|
echo "$border"
|
|
}
|
|
|
|
$APP_KEY="base64:$(openssl rand -base64 32)"
|
|
draw_box $APP_KEY
|
|
fi
|
|
|
|
for dir in storage/framework/cache storage/framework/sessions storage/framework/views; do
|
|
if [ ! -d "$dir" ]; then
|
|
echo " > $dir is missing. Creating scaffold for storage directory..."
|
|
mkdir -p storage/framework/{cache,sessions,views}
|
|
chmod -R 775 storage
|
|
chown -R www-data:www-data storage
|
|
fi
|
|
done
|
|
|
|
if [ ! -L "public/storage" ]; then
|
|
echo " > Creating symbolic link for app public storage..."
|
|
|
|
artisan_as_www_user "storage:link"
|
|
fi
|
|
|
|
echo -e "\n====================== Running migrations... ====================== "
|
|
run_migrations() {
|
|
artisan_as_www_user "migrate --force"
|
|
}
|
|
RETRIES=30
|
|
DELAY=5
|
|
until run_migrations; do
|
|
RETRIES=$((RETRIES-1))
|
|
if [ $RETRIES -le 0 ]; then
|
|
echo " > Database is not ready after multiple attempts. Exiting..."
|
|
exit 1
|
|
fi
|
|
echo " > Waiting for database to be ready... retrying in $DELAY seconds."
|
|
sleep $DELAY
|
|
done
|
|
|
|
echo -e "\n====================== Spinning up Supervisor daemon... ====================== "
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf |