Add stage parameter for backup hooks and add immich_upload backup

This commit is contained in:
Tobias Reisinger 2025-11-15 21:46:32 +01:00
parent 4db5c1878b
commit 759368b6d6
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
8 changed files with 49 additions and 11 deletions

View file

@ -2,5 +2,9 @@
backup_path="$1"
if [ "$2" != "before" ]; then
exit 0
fi
cd /opt/services/immich || exit
docker compose exec database sh -c 'pg_dump -U "$DB_USERNAME" "$DB_DATABASE"' | gzip >"$backup_path/immich.sql.gz"