14 lines
274 B
Bash
14 lines
274 B
Bash
#!/bin/ash
|
|
|
|
echo "Starting PHP-FPM..."
|
|
/usr/sbin/php-fpm84 --fpm-config /home/container/php-fpm/php-fpm.conf --daemonize
|
|
|
|
echo "Starting Redis"
|
|
redis-server &
|
|
|
|
echo "Starting Nginx"
|
|
/usr/sbin/nginx -c /home/container/nginx/nginx.conf &
|
|
cd /home/container/webroot
|
|
/bin/bash
|
|
|