aboutsummaryrefslogtreecommitdiff
path: root/Docker
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-12-28 23:07:52 +0100
committerGravatar GitHub <noreply@github.com> 2022-12-28 23:07:52 +0100
commit7330cbab3852a27d0b5c04aa794cd6f7fe27ad76 (patch)
tree72d3619efb5749db31eb5fcee058b58927ab1ecf /Docker
parentb64650801f852d8b5b39dbf36c79519d2cea4199 (diff)
chmod +x extensions (#4956)
To ease adding custom extensions such as in https://github.com/FreshRSS/Extensions/issues/37#issuecomment-1363474585
Diffstat (limited to 'Docker')
-rwxr-xr-xDocker/entrypoint.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/Docker/entrypoint.sh b/Docker/entrypoint.sh
index 00e80f629..018946397 100755
--- a/Docker/entrypoint.sh
+++ b/Docker/entrypoint.sh
@@ -58,6 +58,8 @@ if [ -n "$FRESHRSS_USER" ]; then
fi
chown -R :www-data .
-chmod -R g+r . && chmod -R g+w ./data/
+chmod -R g+r .
+chmod -R g+w ./data/
+chmod g+x ./extensions/
exec "$@"