ttrss-container/app/startup.sh

101 lines
2.8 KiB
Bash
Raw Normal View History

#!/bin/sh -e
2019-11-15 12:51:55 +00:00
while ! pg_isready -h $TTRSS_DB_HOST -U $TTRSS_DB_USER; do
echo waiting until $TTRSS_DB_HOST is ready...
sleep 3
done
# We don't need those here (HTTP_HOST would cause false SELF_URL_PATH check failures)
unset HTTP_PORT
unset HTTP_HOST
if ! id app >/dev/null 2>&1; then
addgroup -g $OWNER_GID app
adduser -D -h /var/www/html -G app -u $OWNER_UID app
fi
2019-11-15 12:51:55 +00:00
DST_DIR=/var/www/html/tt-rss
SRC_REPO=https://git.tt-rss.org/fox/tt-rss.git
[ -e $DST_DIR ] && rm -f $DST_DIR/.app_is_ready
export PGPASSWORD=$TTRSS_DB_PASS
2019-11-15 12:51:55 +00:00
[ ! -e /var/www/html/index.php ] && cp ${SCRIPT_ROOT}/index.php /var/www/html
2019-11-15 18:18:49 +00:00
PSQL="psql -q -h $TTRSS_DB_HOST -U $TTRSS_DB_USER $TTRSS_DB_NAME"
2019-11-15 12:51:55 +00:00
if [ ! -d $DST_DIR/.git ]; then
2019-11-15 12:51:55 +00:00
mkdir -p $DST_DIR
echo cloning tt-rss source from $SRC_REPO to $DST_DIR...
git clone $SRC_REPO $DST_DIR || echo error: failed to clone master repository.
2019-11-15 12:51:55 +00:00
else
echo updating tt-rss source in $DST_DIR from $SRC_REPO...
cd $DST_DIR && \
git config core.filemode false && \
2021-02-05 20:23:57 +00:00
git config pull.rebase false && \
git pull origin master || echo error: unable to update master repository.
fi
if [ ! -e $DST_DIR/index.php ]; then
echo "error: tt-rss index.php missing (git clone failed?), unable to continue."
exit 1
2019-11-15 12:51:55 +00:00
fi
2019-11-15 14:42:50 +00:00
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.
2019-11-15 14:42:50 +00:00
else
echo updating plugins.local/nginx_xaccel...
cd $DST_DIR/plugins.local/nginx_xaccel && \
git config core.filemode false && \
2021-02-05 20:23:57 +00:00
git config pull.rebase false && \
git pull origin master || echo error: failed to update plugin repository.
2019-11-15 14:42:50 +00:00
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 \
2021-02-05 17:07:28 +00:00
/var/log/php8
2019-11-15 12:51:55 +00:00
for d in cache lock feed-icons; do
chmod 777 $DST_DIR/$d
find $DST_DIR/$d -type f -exec chmod 666 {} \;
2019-11-15 12:51:55 +00:00
done
2019-11-16 10:33:58 +00:00
$PSQL -c "create extension if not exists pg_trgm"
2021-02-02 11:01:07 +00:00
RESTORE_SCHEMA=${SCRIPT_ROOT}/restore-schema.sql.gz
if [ -r $RESTORE_SCHEMA ]; then
$PSQL -c "drop schema public cascade; create schema public;"
zcat $RESTORE_SCHEMA | $PSQL
2019-11-15 12:51:55 +00:00
fi
# this was previously generated
rm -f $DST_DIR/config.php.bak
2021-02-22 09:13:20 +00:00
if [ ! -z "${TTRSS_XDEBUG_ENABLED}" ]; then
if [ -z "${TTRSS_XDEBUG_HOST}" ]; then
export TTRSS_XDEBUG_HOST=$(ip ro sh 0/0 | cut -d " " -f 3)
fi
2021-02-22 09:13:20 +00:00
echo enabling xdebug with the following parameters:
env | grep TTRSS_XDEBUG
cat > /etc/php8/conf.d/50_xdebug.ini <<EOF
zend_extension=xdebug.so
xdebug.mode=develop,trace,debug
xdebug.start_with_request = yes
xdebug.client_port = ${TTRSS_XDEBUG_PORT}
xdebug.client_host = ${TTRSS_XDEBUG_HOST}
EOF
fi
2021-02-05 17:07:28 +00:00
cd $DST_DIR && sudo -E -u app php8 ./update.php --update-schema=force-yes
2020-09-28 10:55:06 +00:00
touch $DST_DIR/.app_is_ready
2021-02-05 17:07:28 +00:00
sudo -E -u app /usr/sbin/php-fpm8 -F
2019-11-15 12:51:55 +00:00