Backup Tools
Restic
Setup
export RESTIC_REPOSITORY="s3:https://api.wayscloud.services/v1/storage/my-backups"
export AWS_ACCESS_KEY_ID="wayscloud"
export AWS_SECRET_ACCESS_KEY="wayscloud_storage_abc123_YourKey"
# Initialize
restic init
Backup
# Backup directory
restic backup /home/user/documents
# List snapshots
restic snapshots
# Restore
restic restore latest --target /restore/path
Duplicati
- Install from duplicati.com
- Add Backup → S3 Compatible
- Server:
api.wayscloud.services/v1/storage - Bucket:
my-backups - Access Key:
wayscloud - Secret Key: Your API key
Borg Backup
# Mount via rclone first
rclone mount wayscloud:my-backups /mnt/borg --daemon
# Initialize repository
borg init --encryption=repokey /mnt/borg/borg-backup
# Create backup
borg create /mnt/borg/borg-backup::backup-$(date +%Y%m%d) /home/user/documents