mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-28 12:23:02 +02:00
30 lines
578 B
Markdown
30 lines
578 B
Markdown
---
|
|
title: SQLite
|
|
eleventyNavigation:
|
|
key: SQLite
|
|
parent: 🗄️ Data sources
|
|
---
|
|
<span class="minilink minilink-addedin">New in version 1.7.9</span> To backup
|
|
SQLite with borgmatic, use the `sqlite_databases:` hook. For example:
|
|
|
|
|
|
```yaml
|
|
sqlite_databases:
|
|
- name: mydb
|
|
path: /var/lib/sqlite3/mydb.sqlite
|
|
```
|
|
|
|
|
|
## Full configuration
|
|
|
|
{% include snippet/configuration/sample.md %}
|
|
|
|
```yaml
|
|
{% include borgmatic/sqlite_databases.yaml %}
|
|
```
|
|
|
|
|
|
## Related documentation
|
|
|
|
* [How to backup your databases](https://torsion.org/borgmatic/how-to/backup-your-databases/)
|