You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -646,6 +646,10 @@ Datastore backups are supported via AWS S3 and S3 compatible services like [mini
646
646
647
647
You may skip the `backup-auth` step if your dokku install is running within EC2 and has access to the bucket via an IAM profile. In that case, use the `--use-iam` option with the `backup` command.
648
648
649
+
If both passphrase and public key forms of encryption are set, the public key encryption will take precedence.
650
+
651
+
The underlying core backup script is present [here](https://github.com/dokku/docker-s3backup/blob/main/backup.sh).
652
+
649
653
Backups can be performed using the backup commands:
650
654
651
655
### set up authentication for backups on the postgres service
@@ -728,6 +732,8 @@ Set the GPG-compatible passphrase for encrypting backups for backups:
728
732
dokku postgres:backup-set-encryption lollipop
729
733
```
730
734
735
+
Public key encryption will take precendence over the passphrase encryption if both types are set.
736
+
731
737
### set GPG Public Key encryption for all future backups of postgres service
732
738
733
739
```shell
@@ -741,6 +747,8 @@ Set the `GPG` Public Key for encrypting backups:
Copy file name to clipboardExpand all lines: bin/generate
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -304,6 +304,10 @@ def usage_backup(
304
304
"",
305
305
"You may skip the `backup-auth` step if your dokku install is running within EC2 and has access to the bucket via an IAM profile. In that case, use the `--use-iam` option with the `backup` command.",
306
306
"",
307
+
"If both passphrase and public key forms of encryption are set, the public key encryption will take precedence.",
308
+
"",
309
+
"The underlying core backup script is present [here](https://github.com/dokku/docker-s3backup/blob/main/backup.sh).",
310
+
"",
307
311
"Backups can be performed using the backup commands:",
0 commit comments