14 lines
659 B
Bash
14 lines
659 B
Bash
#!/bin/sh
|
|
|
|
# Create cron job for Grav maintenance scripts
|
|
(crontab -l; echo "* * * * * cd /var/www/html;/usr/bin/php bin/grav scheduler 1>> /dev/null 2>&1") | crontab -
|
|
# 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 Apache, PHP-FPM and Cron
|
|
exec /usr/sbin/httpd -D FOREGROUND -f /etc/apache2/httpd.conf &
|
|
exec /usr/sbin/php-fpm7 -F
|
|
exec crond
|
|
|
|
# Make sure apache can read&right to logs and docroot
|
|
RUN chown -R apache:apache /var/log/apache2 /var/www |