From 46f7ca5624bfe3426b9b98dd1b2479421ff5616b Mon Sep 17 00:00:00 2001 From: El RIDO Date: Wed, 6 Oct 2021 21:56:14 +0200 Subject: [PATCH] exclude addon configuration as well, kudos @MrPetovan --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 73d4121..0739dd4 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -74,7 +74,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ]; then rsync $rsync_options --delete --exclude-from=/upgrade.exclude /usr/src/friendica/ /var/www/html/ # Update docker-based config files, but never delete other config files - rsync $rsync_options --update --exclude=/local.config.php /usr/src/friendica/config/ /var/www/html/config/ + rsync $rsync_options --update --exclude=/addon.config.php --exclude=/local.config.php /usr/src/friendica/config/ /var/www/html/config/ # In case there is no .htaccess, copy it from the default dist file if [ ! -f "/var/www/html/.htaccess" ]; then