diff --git a/app/Dockerfile b/app/Dockerfile index 411c289..4cfc546 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -28,6 +28,9 @@ ADD config.docker.php ${SCRIPT_ROOT} ENV OWNER_UID=1000 ENV OWNER_GID=1000 +# don't try to update local plugins on startup (except for nginx_xaccel) +ENV TTRSS_NO_STARTUP_PLUGIN_UPDATES="" + # TTRSS_XDEBUG_HOST defaults to host IP if unset ENV TTRSS_XDEBUG_ENABLED="" ENV TTRSS_XDEBUG_HOST="" diff --git a/app/startup.sh b/app/startup.sh index bff451a..78eeeab 100755 --- a/app/startup.sh +++ b/app/startup.sh @@ -47,13 +47,26 @@ fi if [ ! -d $DST_DIR/plugins.local/nginx_xaccel ]; then echo cloning plugins.local/nginx_xaccel... git clone https://git.tt-rss.org/fox/ttrss-nginx-xaccel.git \ - $DST_DIR/plugins.local/nginx_xaccel || echo error: failed to clone plugin repository. + $DST_DIR/plugins.local/nginx_xaccel || echo warning: failed to clone nginx_xaccel. else - echo updating plugins.local/nginx_xaccel... - cd $DST_DIR/plugins.local/nginx_xaccel && \ - git config core.filemode false && \ - git config pull.rebase false && \ - git pull origin master || echo error: failed to update plugin repository. + if [ -z "$TTRSS_NO_STARTUP_PLUGIN_UPDATES" ]; then + echo updating all local plugins... + + find $DST_DIR/plugins.local -type d -maxdepth 1 | while read PLUGIN; do + echo updating $PLUGIN... + + cd $PLUGIN && \ + git config core.filemode false && \ + git config pull.rebase false && \ + git pull origin master || echo warning: attempt to update plugin $PLUGIN failed. + done + else + echo updating plugins.local/nginx_xaccel... + cd $DST_DIR/plugins.local/nginx_xaccel && \ + git config core.filemode false && \ + git config pull.rebase false && \ + git pull origin master || echo warning: attempt to update plugin nginx_xaccel failed. + fi fi cp ${SCRIPT_ROOT}/config.docker.php $DST_DIR/config.php