iflrandevu/docker/php-fpm/start-container

17 lines
275 B
Bash

#!/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