Files
investbrain/docker/entrypoint.sh
T
hackerESQ 36c2707a51 simplify docker install
also adds auto update into entry point
2024-09-05 21:34:09 -05:00

34 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
cd /var/www/app
echo "====================== Running entrypoint script... ====================== "
if [ ! -f ".env" ]; then
echo " > Ope, gotta create an .env file!"
cp .env.example .env
fi
if ( ! grep -q "^APP_KEY=" ".env" || grep -q "^APP_KEY=$" ".env"); then
echo " > Ah, APP_KEY is missing in .env file. Generating a new key!"
/usr/local/bin/php artisan key:generate
fi
echo "====================== Checking for updates... ====================== "
/usr/bin/git pull
echo "====================== Installing Composer dependencies... ====================== "
/usr/local/bin/composer install
echo "====================== Install NPM dependencies and build frontend... ====================== "
/usr/bin/npm install
/usr/bin/npm run build
echo "====================== Running migrations... ====================== "
/usr/local/bin/php artisan migrate --force
echo "====================== Spinning up Supervisor daemon... ====================== "
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf