16 lines
360 B
Bash
16 lines
360 B
Bash
#!/bin/sh
|
|
|
|
# Starting base services
|
|
echo "[ INFO ] Starting MySQL Server"
|
|
service mysql start
|
|
|
|
echo "[ INFO ] Starting PHP 7.2 Service"
|
|
service php7.2-fpm start
|
|
|
|
# Running friendbook database setup script
|
|
echo "[ INFO ] Setting up friendbook database"
|
|
mysql -u root < /scripts/friendbook.sql
|
|
|
|
echo "[ INFO ] Starting nginx"
|
|
nginx -g "daemon off;" # Foreground
|