aboutsummaryrefslogtreecommitdiff
path: root/Docker/Dockerfile
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-04-02 13:27:41 +0200
committerGravatar GitHub <noreply@github.com> 2019-04-02 13:27:41 +0200
commitc48e28baf62ce21529e219311de5d113743cde4e (patch)
tree2da5eea7e4c4a03d289f1e4740ed808adb5944cf /Docker/Dockerfile
parentd9e246ecf763eb592f8246d4e9431a80599248e3 (diff)
Fix Docker cron mistake (#2325)
https://github.com/FreshRSS/FreshRSS/issues/2319
Diffstat (limited to 'Docker/Dockerfile')
-rw-r--r--Docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Docker/Dockerfile b/Docker/Dockerfile
index ea6917a40..efd77c6a1 100644
--- a/Docker/Dockerfile
+++ b/Docker/Dockerfile
@@ -25,7 +25,7 @@ RUN a2dismod -f alias autoindex negotiation status && \
RUN sed -r -i "/^\s*(CustomLog|ErrorLog|Listen) /s/^/#/" /etc/apache2/apache2.conf && \
sed -r -i "/^\s*Listen /s/^/#/" /etc/apache2/ports.conf && \
- echo "17,37 su www-data -s /bin/sh -c 'php /var/www/FreshRSS/app/actualize_script.php' 2>> /proc/1/fd/2 > /tmp/FreshRSS.log" >> \
+ echo "17,37 * * * * su www-data -s /bin/sh -c 'php /var/www/FreshRSS/app/actualize_script.php' 2>> /proc/1/fd/2 > /tmp/FreshRSS.log" >> \
/var/spool/cron/crontabs/root
ENV COPY_SYSLOG_TO_STDERR On