1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-12 15:09:52 +02:00

auto update new-style config.php on container boot

This commit is contained in:
Andrew Dolgov 2021-02-01 21:43:23 +03:00
parent 52b7a1260f
commit 58dbc56712

View file

@ -68,8 +68,11 @@ fi
if [ ! -s $DST_DIR/config.php ]; then
cp /config.docker.php $DST_DIR/config.php
else
egrep -q 'SELF_URL_PATH.*getenv' $DST_DIR/config.php || \
if egrep -q 'SELF_URL_PATH.*getenv' $DST_DIR/config.php; then
echo -e "\nWARNING: you're using old-style config.php, overrides via .env will not work.\n" >/dev/stderr
else
cp /config.docker.php $DST_DIR/config.php
fi
fi
# this was previously generated