backup.sh is executed by root
This commit is contained in:
parent
f67e819c4c
commit
a111fe9070
10
backup.sh
10
backup.sh
|
@ -1,18 +1,20 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||||
cd $DIR
|
||||
. ./.env
|
||||
# stop the containers to make sure the data doesn't change during backup.
|
||||
podman stop wordpress_wordpress_1 wordpress_db_1
|
||||
XDG_RUNTIME_DIR=/run/user/1002 su synthikat -c "podman stop wordpress_wordpress_1 wordpress_db_1"
|
||||
|
||||
# Example backup command:
|
||||
# backup: is the remote backup server, defined in ~/.ssh/config - ends with a :
|
||||
# repositories-borg/synthikat is the path on the remote server - ends with a ::
|
||||
# 'backup{now:%Y%m%d}' is the backup name, this includes today's date in the name
|
||||
# the rest are the file paths. You can append as many as you want.
|
||||
borg create --stats --progress backup:repositories-borg/synthikat::'backup{now:%Y%m%d-%M}' wp-content db_data
|
||||
borg create --stats --progress backup:repositories-borg/synthikat::'backup{now:%Y%m%d-%M}' ../wp-content ../db_data
|
||||
|
||||
# restart the containers
|
||||
podman start wordpress_wordpress_1 wordpress_db_1
|
||||
XDG_RUNTIME_DIR=/run/user/1002 su synthikat -c "podman start wordpress_wordpress_1 wordpress_db_1"
|
||||
|
||||
# Delete all the backups which are too old, to save space in the long term.
|
||||
borg prune --keep-daily=7 --keep-weekly=4 backup:repositories-borg/synthikat
|
||||
|
|
Loading…
Reference in a new issue