linkding/docs/backup.md

83 lines
3.6 KiB
Markdown
Raw Normal View History

# Backups
2023-11-05 12:53:08 +00:00
Linkding stores all data in the application's data folder.
The full path to that folder in the Docker container is `/etc/linkding/data`.
2023-11-05 18:27:48 +00:00
As described in the installation docs, you should mount the `/etc/linkding/data` folder to a folder on your host system.
2023-11-05 12:53:08 +00:00
The data folder contains the following contents:
- `db.sqlite3` - the SQLite database
- `favicons` - folder that contains downloaded favicons
2023-11-05 12:53:08 +00:00
The following sections explain how to back up the individual contents.
2023-11-05 12:53:08 +00:00
## Database
2023-11-05 12:53:08 +00:00
This section describes several methods on how to back up the contents of the SQLite database.
2023-11-05 12:53:08 +00:00
> [!WARNING]
> While the SQLite database is just a single file, it is not recommended to just copy that file.
> This method is not transaction safe and may result in a [corrupted database](https://www.sqlite.org/howtocorrupt.html).
2023-11-05 18:27:48 +00:00
> Use one of the backup methods described below.
2023-11-05 18:27:48 +00:00
### Using the backup command
2023-11-05 18:27:48 +00:00
linkding includes a CLI command for creating a backup copy of the database.
2023-11-05 18:27:48 +00:00
To create a backup, execute the following command:
```shell
docker exec -it linkding python manage.py backup /etc/linkding/data/backup.sqlite3
2023-11-05 18:27:48 +00:00
```
This creates a `backup.sqlite3` file in the Docker container under `/etc/linkding/data`.
2023-11-05 18:27:48 +00:00
To copy the backup file to your host system, execute the following command:
```shell
docker cp linkding:/etc/linkding/data/backup.sqlite3 backup.sqlite3
```
2023-11-05 18:27:48 +00:00
This copies the backup file from the Docker container to the current folder on your host system.
Now you can move that file to your backup location.
2023-11-05 18:27:48 +00:00
To restore the backup, just copy the backup file to the data folder of your new installation and rename it to `db.sqlite3`. Then start the Docker container.
2023-11-05 12:53:08 +00:00
### Using the SQLite dump function
Requires [SQLite](https://www.sqlite.org/index.html) to be installed on your host system.
With this method you create a plain text file with the SQL statements to recreate the SQLite database.
2023-11-05 12:53:08 +00:00
To create a backup, execute the following command in the data folder:
```shell
sqlite3 db.sqlite3 .dump > backup.sql
```
2023-11-05 12:53:08 +00:00
This creates a `backup.sql` which you can copy to your backup location.
As this is a plain text file you can also commit it to any revision management system, like git.
Using git, you can commit the changes, followed by a git push to a remote repository.
### Exporting bookmarks from the UI
This is the least technical option to back up bookmarks, but has several limitations:
- It does not export user profiles.
- It only exports your own bookmarks, not those of other users.
- It does not export archived bookmarks.
- It does not export URLs of snapshots on the Internet Archive Wayback machine.
- It does not export favicons.
Only use this method if you are fine with the above limitations.
To export bookmarks from the UI, open the general settings.
In the Export section, click on the *Download* button to download an HTML file containing all your bookmarks.
Then move that file to your backup location.
To restore bookmarks, open the general settings on your new installation.
In the Import section, click on the *Choose file* button to select the HTML file you downloaded before.
Then click on the *Import* button to import the bookmarks.
## Favicons
Doing a backup of the icons is optional, as they can be downloaded again.
2023-11-05 12:53:08 +00:00
If you choose not to back up the icons, you can just restore the database and then click the _Refresh Favicons_ button in the general settings.
This will download all missing icons again.
2023-11-05 12:53:08 +00:00
If you want to back up the icons, then you have to copy the `favicons` folder to your backup location.
2023-11-05 12:53:08 +00:00
To restore the icons, copy the `favicons` folder back to the data folder of your new installation.