plainpad/docker/php-fpm/start-container

11 lines
212 B
Plaintext
Raw Permalink Normal View History

2023-07-26 12:25:04 +03:00
#!/bin/bash
echo "➜ Install Composer Dependencies"
2023-07-26 12:26:13 +03:00
cd server && composer install && cd ..
2023-07-26 12:25:04 +03:00
echo "➜ Install NPM Dependencies"
2023-07-26 12:26:13 +03:00
cd client && npm install && cd ..
2023-07-26 12:25:04 +03:00
echo "➜ Listen To Incoming Requests"
php-fpm