mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 21:24:11 +01:00
19 lines
341 B
Markdown
19 lines
341 B
Markdown
# 💽 Backends
|
|
|
|
Backends are the outputs of the backup process. Each location needs at least one.
|
|
|
|
```yaml | .autorestic.yml
|
|
version: 2
|
|
|
|
backends:
|
|
name-of-backend:
|
|
type: local
|
|
path: /data/my/backups
|
|
```
|
|
|
|
## Types
|
|
|
|
We restic supports multiple types of backends. See the [full list](/backend/available) for details.
|
|
|
|
> :ToCPrevNext
|