AppsBackupRsnapshot

rsnapshot

A tool for backing up your data using rsync.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
services:
  rsnapshot:
    image: lscr.io/linuxserver/rsnapshot:latest
    container_name: rsnapshot
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /path/to/rsnapshot/config:/config
      - /path/to/snapshots:/.snapshots #optional
      - /path/to/data:/data #optional
    restart: unless-stopped

Resources

Website: https://rsnapshot.org/

GitHub: https://github.com/rsnapshot/rsnapshot

Docker Hub: https://hub.docker.com/r/linuxserver/rsnapshot

Configuration: https://github.com/linuxserver/docker-rsnapshot