Comment updates
This commit is contained in:
parent
928f671be7
commit
d1bc1f226f
|
|
@ -9,6 +9,7 @@ RUN apk update && \
|
|||
RUN apk add --no-cache \
|
||||
apache2 \
|
||||
apache2-proxy \
|
||||
# PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites - https://php-fpm.org
|
||||
php7-fpm \
|
||||
php7 \
|
||||
php7-apcu \
|
||||
|
|
|
|||
2
run.sh
2
run.sh
|
|
@ -5,6 +5,6 @@
|
|||
# Cron requires that each entry in a crontab end in a newline character. If the last entry in a crontab is missing the newline, cron will consider the crontab (at least partially) broken and refuse to install it.
|
||||
(crontab -l; echo "") | crontab -
|
||||
|
||||
# Start PHP-FPM and Apache
|
||||
# Start Apache and PHP-FPM
|
||||
exec /usr/sbin/httpd -D FOREGROUND -f /etc/apache2/httpd.conf &
|
||||
exec /usr/sbin/php-fpm7 -F
|
||||
Loading…
Reference in New Issue