aboutsummaryrefslogtreecommitdiff
path: root/Docker/Dockerfile-Newest
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-Newest
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-Newest')
-rw-r--r--Docker/Dockerfile-Newest2
1 files changed, 1 insertions, 1 deletions
diff --git a/Docker/Dockerfile-Newest b/Docker/Dockerfile-Newest
index 892c69a6f..80ba98566 100644
--- a/Docker/Dockerfile-Newest
+++ b/Docker/Dockerfile-Newest
@@ -42,7 +42,7 @@ RUN rm -f /etc/apache2/conf.d/languages.conf /etc/apache2/conf.d/info.conf \
touch /var/www/FreshRSS/Docker/env.txt && \
echo "27,57 * * * * . /var/www/FreshRSS/Docker/env.txt; \
su apache -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