Overview +Hooks +Exluding Files +Forget Policy +Cron +Docker Volumes
diff --git a/docs/backend/available.html b/docs/backend/available.html new file mode 100644 index 0000000..438ff08 --- /dev/null +++ b/docs/backend/available.html @@ -0,0 +1,56 @@ +
In theory all the restic backends are supported.
Those tested are the following:
1backends:
2 name-of-backend:
3 type: local
4 path: /data/my/backups
1backends:
2 name-of-backend:
3 type: b2
4 path: 'myAccount:myBucket/my/path'
5 B2_ACCOUNT_ID: backblaze_account_id
6 B2_ACCOUNT_KEY: backblaze_account_key
1backends:
2 name-of-backend:
3 type: s3
4 path: s3.amazonaws.com/bucket_name
5 # Minio
6 # path: http://localhost:9000/bucket_name
7 AWS_ACCESS_KEY_ID: my_key
8 AWS_SECRET_ACCESS_KEY: my_secret
For SFTP to work you need to use configure your host inside of ~/.ssh/config as password prompt is not supported. For more information on this topic please see the official docs on the matter.
1backends:
2 name-of-backend:
3 type: sftp
4 path: my-host:/remote/path/on/the/server
Backends are the ouputs of the backup process. Each location needs at least one.
1backends:
2 name-of-backend:
3 type: local
4 path: /data/my/backups
We restic supports multiple types of backends. See the full list for details.
1autorestic backup [-l, --location] [-a, --all]
Performes a backup of all locations if the -a
flag is passed. To only backup some locations pass one or more -l
or --location
flags.
1autorestic backup -l my-location
Home +
1autorestic backup [-l, --location] [-a, --all]
Performes a backup of all locations if the -a
flag is passed. To only backup some locations pass one or more -l
or --location
flags.
1autorestic backup -l my-location
Home Quick Start Installation -Configuration