diff --git a/php/templates/containers.twig b/php/templates/containers.twig index a2467329..ac286acb 100644 --- a/php/templates/containers.twig +++ b/php/templates/containers.twig @@ -394,9 +394,12 @@ This is your encryption password for backups: {{ borgbackup_password }}

Please save it at a safe place since you won't be able to restore from backup if you lose this password!

Backed up will get all important data of your Nextcloud AIO instance like the database, your files and configuration files of the mastercontainer and else.

- The backup itself will use a tool that is called BorgBackup which is a well-known server backup tool that efficiently backs up your files and encrypts them on the fly.

+ The backup itself uses a tool that is called
BorgBackup which is a well-known server backup tool that efficiently backs up your files and encrypts them on the fly.

Backups get created in the following directory on the host: {{ borg_backup_host_location }}/borg

- Be aware that this solution does not back up files and folders that are mounted into Nextcloud using the external storage app. + Be aware that this solution does not back up files and folders that are mounted into Nextcloud using the external storage app - but you can add further Docker volumes and host paths that you want to back up after the initial backup is done.

+ Regarding backup retention, see
this documentation

+ Daily backups can get enabled after the initial backup is done. Enabling this also allows to enable an option that allows to update all containers, Nextcloud and its apps automatically.

+ For further documentation and options on this backup solution refer to this documentation and below. {% if isApacheStarting != true %}

Backup creation

diff --git a/readme.md b/readme.md index 5e0e65ff..83e116f6 100644 --- a/readme.md +++ b/readme.md @@ -330,7 +330,11 @@ Backups can be created and restored in the AIO interface using the buttons `Crea The backups itself get encrypted with an encryption key that gets shown to you in the AIO interface. Please save that at a safe place as you will not be able to restore from backup without this key. -Be aware that this solution does not back up files and folders that are mounted into Nextcloud using the external storage app. +Daily backups can get enabled after the initial backup is done. Enabling this also allows to enable an option that allows to update all containers, Nextcloud and its apps automatically. + +Be aware that this solution does not back up files and folders that are mounted into Nextcloud using the external storage app - but you can add further Docker volumes and host paths that you want to back up after the initial backup is done. + +Regarding backup retention, see [this documentation](https://github.com/nextcloud/all-in-one/discussions/1675). ---