* temporarily add more startup debugging

* perform all sync operations under 'app'
pull/5/head
Andrew Dolgov 2 years ago
parent 670cf8bb85
commit a9c27a9d02

@ -1,4 +1,4 @@
#!/bin/sh -e #!/bin/sh -ex
while ! pg_isready -h $TTRSS_DB_HOST -U $TTRSS_DB_USER; do while ! pg_isready -h $TTRSS_DB_HOST -U $TTRSS_DB_USER; do
echo waiting until $TTRSS_DB_HOST is ready... echo waiting until $TTRSS_DB_HOST is ready...
@ -26,10 +26,15 @@ export PGPASSWORD=$TTRSS_DB_PASS
[ ! -e /var/www/html/index.php ] && cp ${SCRIPT_ROOT}/index.php /var/www/html [ ! -e /var/www/html/index.php ] && cp ${SCRIPT_ROOT}/index.php /var/www/html
if [ ! -d $DST_DIR ]; then if [ ! -d $DST_DIR ]; then
rsync -a \ mkdir -p $DST_DIR
chown $OWNER_UID:$OWNER_GID $DST_DIR
sudo -u app rsync -a \
$SRC_DIR/ $DST_DIR/ $SRC_DIR/ $DST_DIR/
else else
rsync -a --delete \ chown -R $OWNER_UID:$OWNER_GID $DST_DIR
sudo -u app rsync -a --delete \
--exclude cache \ --exclude cache \
--exclude lock \ --exclude lock \
--exclude feed-icons \ --exclude feed-icons \
@ -39,19 +44,29 @@ else
--exclude themes.local \ --exclude themes.local \
$SRC_DIR/ $DST_DIR/ $SRC_DIR/ $DST_DIR/
rsync -a --delete \ sudo -u app rsync -a --delete \
$SRC_DIR/plugins.local/nginx_xaccel $DST_DIR/plugins.local/nginx_xaccel $SRC_DIR/plugins.local/nginx_xaccel \
$DST_DIR/plugins.local/nginx_xaccel
fi fi
for d in cache lock feed-icons plugins.local themes.local; do for d in cache lock feed-icons plugins.local themes.local; do
mkdir -p $DST_DIR/$d sudo -u app mkdir -p $DST_DIR/$d
done
for d in cache lock feed-icons; do
chmod 777 $DST_DIR/$d
find $DST_DIR/$d -type f -exec chmod 666 {} \;
done done
sudo -u app cp ${SCRIPT_ROOT}/config.docker.php $DST_DIR/config.php
chmod 644 $DST_DIR/config.php
chown -R $OWNER_UID:$OWNER_GID $DST_DIR \
/var/log/php8
if [ -z "$TTRSS_NO_STARTUP_PLUGIN_UPDATES" ]; then if [ -z "$TTRSS_NO_STARTUP_PLUGIN_UPDATES" ]; then
echo updating all local plugins... echo updating all local plugins...
chown -R $OWNER_UID:$OWNER_GID $DST_DIR/plugins.local
find $DST_DIR/plugins.local -mindepth 1 -maxdepth 1 -type d | while read PLUGIN; do find $DST_DIR/plugins.local -mindepth 1 -maxdepth 1 -type d | while read PLUGIN; do
if [ -d $PLUGIN/.git ]; then if [ -d $PLUGIN/.git ]; then
echo updating $PLUGIN... echo updating $PLUGIN...
@ -66,17 +81,6 @@ else
echo skipping local plugin updates, disabled. echo skipping local plugin updates, disabled.
fi fi
cp ${SCRIPT_ROOT}/config.docker.php $DST_DIR/config.php
chmod 644 $DST_DIR/config.php
chown -R $OWNER_UID:$OWNER_GID $DST_DIR \
/var/log/php8
for d in cache lock feed-icons; do
chmod 777 $DST_DIR/$d
find $DST_DIR/$d -type f -exec chmod 666 {} \;
done
PSQL="psql -q -h $TTRSS_DB_HOST -U $TTRSS_DB_USER $TTRSS_DB_NAME" PSQL="psql -q -h $TTRSS_DB_HOST -U $TTRSS_DB_USER $TTRSS_DB_NAME"
$PSQL -c "create extension if not exists pg_trgm" $PSQL -c "create extension if not exists pg_trgm"

Loading…
Cancel
Save