diff options
author | reverite <samantha@chalker.io> | 2018-03-27 22:05:35 -0700 |
---|---|---|
committer | reverite <samantha@chalker.io> | 2018-03-27 22:05:35 -0700 |
commit | 8550be23e6dd30ab24b109185ead7ae432903cce (patch) | |
tree | 944ec2ecd9e35c649d3fcc6827db2582a54e698e /deploy/scripts/backup.sh | |
parent | 0e335fdbe68e827cbe23ea376c9efe28dc91aaef (diff) |
rearrange
Diffstat (limited to 'deploy/scripts/backup.sh')
-rwxr-xr-x | deploy/scripts/backup.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/deploy/scripts/backup.sh b/deploy/scripts/backup.sh new file mode 100755 index 0000000..b9a4b06 --- /dev/null +++ b/deploy/scripts/backup.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +[ -z "$COMPOSE" ] && COMPOSE="$(command -v docker-compose)" +[ -z "$COMPOSE" ] && COMPOSE="/usr/local/bin/docker-compose" +[ -z "$YML_LOC" ] && YML_LOC="$HOME/docker-compose.yml" + +COMPOSE="$COMPOSE -f $YML_LOC" + +if [ "$1" == 'daily' ]; then + find $HOME/backups -type f -name postgres-daily.* -mtime +7 -delete + $COMPOSE exec -T -u postgres mstdb sh -c "umask 0377 && /usr/local/bin/pg_dump -Fc -h mstdb -d postgres -U postgres" > "$HOME/backups/postgres-daily.$(date -Iseconds).pgsql" + $COMPOSE run -T --rm web rake mastodon:media:remove_remote +fi + +if [ "$1" == 'hourly' ]; then + find $HOME/backups -type f -name postgres-hourly.* -mmin +360 -delete + $COMPOSE exec -T -u postgres mstdb sh -c "umask 0377 && /usr/local/bin/pg_dump -Fc -h mstdb -d postgres -U postgres" > "$HOME/backups/postgres-hourly.$(date -Iseconds).pgsql" +fi |