aboutsummaryrefslogtreecommitdiff
path: root/Docker/Dockerfile
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-10-24 19:39:35 +0200
committerGravatar GitHub <noreply@github.com> 2021-10-24 19:39:35 +0200
commitd924fc5fbbe6b93d7a42aa8c77af59cb2ffb00db (patch)
tree6e750c39afe4fbb4db3fdfea2a00c96e69a08e06 /Docker/Dockerfile
parent88e47dba80fdca9ad77bac3e1b1e9694c750287c (diff)
Fix cron regression (#3933)
#fix https://github.com/FreshRSS/FreshRSS/pull/3927/files#r735146297 The path `/var/www/FreshRSS/` might be a Docker volume, breaking files created there during Docker build
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 c86298b20..a08740449 100644
--- a/Docker/Dockerfile
+++ b/Docker/Dockerfile
@@ -45,7 +45,7 @@ RUN sed -r -i "/^\s*(CustomLog|ErrorLog|Listen) /s/^/#/" /etc/apache2/apache2.co
touch /var/www/FreshRSS/Docker/env.txt && \
echo "7,37 * * * * . /var/www/FreshRSS/Docker/env.txt; \
su www-data -s /bin/sh -c 'php /var/www/FreshRSS/app/actualize_script.php' \
- 2>> /proc/1/fd/2 > /tmp/FreshRSS.log" > /var/www/FreshRSS/Docker/crontab.default
+ 2>> /proc/1/fd/2 > /tmp/FreshRSS.log" > /etc/crontab.freshrss.default
ENV COPY_LOG_TO_SYSLOG On
ENV COPY_SYSLOG_TO_STDERR On