mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-06 05:34:13 +01:00
17 lines
328 B
Markdown
17 lines
328 B
Markdown
|
# 💽 Backends
|
||
|
|
||
|
Backends are the ouputs of the backup process. Each location needs at least one.
|
||
|
|
||
|
```yaml | .autorestic.yml
|
||
|
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
|