diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-24 13:10:28 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-24 13:10:28 +0300 |
| commit | 52267d26394527fbda8cf6b5c8ba972fb0e70072 (patch) | |
| tree | 69f6fe6622baac9f1eacf744fb7c194de2a4adff /.docker/app/backup.sh | |
| parent | 9d4e945386b10e7dc0ef97b2abb0521bd84b9705 (diff) | |
remove APP_WEB_ROOT from fpm container because it expect a different value from nginx container, replace with APP_INSTALL_BASE_DIR specific to fpm container
Diffstat (limited to '.docker/app/backup.sh')
| -rw-r--r-- | .docker/app/backup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.docker/app/backup.sh b/.docker/app/backup.sh index f35a5086b..dbdc7e72d 100644 --- a/.docker/app/backup.sh +++ b/.docker/app/backup.sh @@ -2,7 +2,7 @@ DST_DIR=/backups KEEP_DAYS=28 -APP_ROOT=$APP_WEB_ROOT/tt-rss +APP_ROOT=$APP_INSTALL_BASE_DIR/tt-rss if pg_isready -h $TTRSS_DB_HOST -U $TTRSS_DB_USER -p $TTRSS_DB_PORT; then DST_FILE=ttrss-backup-$(date +%Y%m%d).sql.gz |