docs: add manual gpg decrypt example

This commit is contained in:
2024-08-03 02:04:58 +02:00
parent 4d7394ca2e
commit f5fd15bad6
4 changed files with 13 additions and 3 deletions

View File

@@ -11,6 +11,14 @@ The image supports encrypting backups using GPG out of the box. In case a `GPG_P
{: .warning }
To restore an encrypted backup, you need to provide the same GPG passphrase used during backup process.
To decrypt manually, you need to install gpg
```shell
gpg --batch --passphrase "my-passphrase" \
--output database_20240730_044201.sql.gz \
--decrypt database_20240730_044201.sql.gz.gpg
```
### Backup
```yml