update all local plugins on startup, unless forbidden by TTRSS_NO_STARTUP_PLUGIN_UPDATES
This commit is contained in:
parent
3c30e41606
commit
bd0c7ebf0e
|
@ -28,6 +28,9 @@ ADD config.docker.php ${SCRIPT_ROOT}
|
||||||
ENV OWNER_UID=1000
|
ENV OWNER_UID=1000
|
||||||
ENV OWNER_GID=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
|
# TTRSS_XDEBUG_HOST defaults to host IP if unset
|
||||||
ENV TTRSS_XDEBUG_ENABLED=""
|
ENV TTRSS_XDEBUG_ENABLED=""
|
||||||
ENV TTRSS_XDEBUG_HOST=""
|
ENV TTRSS_XDEBUG_HOST=""
|
||||||
|
|
|
@ -47,13 +47,26 @@ fi
|
||||||
if [ ! -d $DST_DIR/plugins.local/nginx_xaccel ]; then
|
if [ ! -d $DST_DIR/plugins.local/nginx_xaccel ]; then
|
||||||
echo cloning plugins.local/nginx_xaccel...
|
echo cloning plugins.local/nginx_xaccel...
|
||||||
git clone https://git.tt-rss.org/fox/ttrss-nginx-xaccel.git \
|
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
|
else
|
||||||
|
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...
|
echo updating plugins.local/nginx_xaccel...
|
||||||
cd $DST_DIR/plugins.local/nginx_xaccel && \
|
cd $DST_DIR/plugins.local/nginx_xaccel && \
|
||||||
git config core.filemode false && \
|
git config core.filemode false && \
|
||||||
git config pull.rebase false && \
|
git config pull.rebase false && \
|
||||||
git pull origin master || echo error: failed to update plugin repository.
|
git pull origin master || echo warning: attempt to update plugin nginx_xaccel failed.
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cp ${SCRIPT_ROOT}/config.docker.php $DST_DIR/config.php
|
cp ${SCRIPT_ROOT}/config.docker.php $DST_DIR/config.php
|
||||||
|
|
Loading…
Reference in New Issue