Skip to content

BlockLune/rclone-backup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

rclone-backup

Backup data with rclone.

Usage

You need to install rclone and configure it first. Check the rclone documentation for more information.

Then, download the backup script and make it executable:

curl -O https://raw.githubusercontent.com/BlockLune/rclone-backup/refs/heads/main/backup.sh
chmod +x backup.sh

Back up your data with the following command (Replace <src> with the source directory and <dest> with the destination path. Multiple destinations are supported):

./backup.sh <src> <dest>...

You can use --help to see more options:

Usage: backup.sh [OPTIONS] <src> <dest>...

Backup directory using tar and rclone.

Options:
  --help                Show this help message
  --max-files=N         Maximum number of backup files to keep (default: 3, 0 for unlimited)
  --rclone-config=PATH  Specify rclone config file path

Arguments:
  src                   Source directory to backup
  dest                  Destination path(s) (rclone remote)

Example:
  backup.sh /path/to/backup remote:backup/
  backup.sh --max-files=5 /path/to/backup remote1:backup/ remote2:backup/

Example Senario

I want to backup /home/blocklune/docker_data to my Cloudflare R2 storage. The r2 bucket name is rclone, and the directory in it is docker_data_backup.

My rclone configuration file is located at /root/.config/rclone/rclone.conf and looks like this:

[r2]
type = s3
provider = Cloudflare
access_key_id = MY_ACCESS_KEY_ID
secret_access_key = MY_SECRET_ACCESS_KEY
region = auto
endpoint = https://MY_ENDPOINT

I will run the following command to add a new backup job:

sudo crontab -e

And add the following line to the crontab file (run every Sunday, Tuesday, and Friday at 4:00 AM):

0 4 * * 0,2,5 /home/blocklune/rclone-backup/backup.sh /home/blocklune/docker_data/ r2:rclone/docker_data_backup/ >> /home/blocklune/rclone-backup/backup.log 2>&1

References

About

Back up data with rclone

Topics

Resources

Stars

Watchers

Forks

Languages