From 450185aaba091d42d443d69eb80dd8c36450e774 Mon Sep 17 00:00:00 2001 From: William Miceli <1-WilliamMiceli@git.williammiceli.systems> Date: Sat, 18 May 2019 23:46:40 -0400 Subject: [PATCH] Fixed having duplicate cron run-parts jobs for root and nginx --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5ebc1bd..ea6b48b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN apk add --no-cache \ php7-simplexml \ php7-xml \ php7-zip \ - && (crontab -l; echo "* * * * * cd /var/www;/usr/bin/php bin/grav scheduler 1>> /dev/null 2>&1") | crontab -u nginx - + && (crontab -u nginx -l; echo "* * * * * cd /var/www;/usr/bin/php bin/grav scheduler 1>> /dev/null 2>&1") | crontab -u nginx - # Install Grav Into The Root Web Directory RUN mkdir -p /var/www \