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

move app user creation to startup scripts

run fpm as app user
This commit is contained in:
Andrew Dolgov 2020-01-23 16:29:49 +03:00
parent 8efb1fb4df
commit 0e7d838fec
5 changed files with 10 additions and 15 deletions

View file

@ -5,6 +5,9 @@ while ! pg_isready -h $DB_HOST -U $DB_USER; do
sleep 3
done
addgroup -g $OWNER_GID app
adduser -D -h /var/www/html -G app -u $OWNER_UID app
DST_DIR=/var/www/html/tt-rss
SRC_DIR=/src/tt-rss/
@ -38,7 +41,8 @@ for d in cache lock feed-icons; do
chmod -R 777 $DST_DIR/$d
done
chown -R $OWNER_UID:$OWNER_GID $DST_DIR
chown -R $OWNER_UID:$OWNER_GID $DST_DIR \
/var/log/php7
PSQL="psql -q -h $DB_HOST -U $DB_USER $DB_NAME"
@ -75,5 +79,5 @@ fi
touch $DST_DIR/.app_is_ready
exec /usr/sbin/php-fpm7 -F
sudo -u app /usr/sbin/php-fpm7 -F