Optionschevron_right
The docker image is build with rclone and restic already included. It's ment more as a utility image.
For remote backups (S3, B2, GCS, etc.) it's quite easy, as you only need to mount the config file and the data to backup.
1link$docker run --rm \\
2link$ -v $(pwd):/data \\
3link$ cupcakearmy/autorestic \\
4link$ autorestic backup -va -c /data/.autorestic.yaml
For rclone you will have to also mount the rclone config file to /root/.config/rclone/rclone.conf
.
To check where it is located you can run the following command: rclone config file
.
Example
1link$docker run \\
2link$ -v /home/user/.config/rclone/rclone.conf:/root/.config/rclone/rclone.conf:ro \\
3link$ ...
Home Quick Start Installation Configuration Upgrade