From 27c4194c8e1c4470ca746f83030e3ad366c7ffcb Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 4 Mar 2021 21:18:34 +0100 Subject: Disable built-in update when using Docker (#3496) #fix https://github.com/FreshRSS/FreshRSS/issues/3495 --- Docker/entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Docker') diff --git a/Docker/entrypoint.sh b/Docker/entrypoint.sh index 87c0a0f85..7043cf153 100755 --- a/Docker/entrypoint.sh +++ b/Docker/entrypoint.sh @@ -6,6 +6,9 @@ find /etc/php*/ -type f -name php.ini -exec sed -r -i "\\#^;?date.timezone#s#^.* find /etc/php*/ -type f -name php.ini -exec sed -r -i "\\#^;?post_max_size#s#^.*#post_max_size = 32M#" {} \; find /etc/php*/ -type f -name php.ini -exec sed -r -i "\\#^;?upload_max_filesize#s#^.*#upload_max_filesize = 32M#" {} \; +# Disable built-in updates when using Docker, as the full image is supposed to be updated instead. +sed -r -i "\\#disable_update#s#^.*#\t'disable_update' => true,#" ./config.default.php + if [ -n "$LISTEN" ]; then find /etc/apache2/ -type f -name FreshRSS.Apache.conf -exec sed -r -i "\\#^Listen#s#^.*#Listen $LISTEN#" {} \; fi -- cgit v1.2.3