iflrandevu/docker/php-fpm/start-container

17 lines
275 B
Plaintext
Raw Normal View History

#!/bin/bash
echo "➜ Set correct permissions"
chmod -R 777 storage
echo "➜ Install Composer Dependencies"
composer install
echo "➜ Install NPM Dependencies"
npm install
echo "➜ Build Project Assets"
npx gulp compile
echo "➜ Listen To Incoming Requests"
php-fpm