diff --git a/php/templates/containers.twig b/php/templates/containers.twig
index 293a4e9e..eaa8faab 100644
--- a/php/templates/containers.twig
+++ b/php/templates/containers.twig
@@ -175,12 +175,7 @@
- The folder path that you enter must start with / and must not end with /.
- An example for Linux is /mnt/backup.
- On Synology it could be /volume1/docker/nextcloud/backup.
- For macOS it may be /var/backup.
- On Windows it might be /run/desktop/mnt/host/c/backup. (This path is equivalent to 'C:\backup' on your Windows host so you need to translate the path accordingly. Hint: the path that you enter needs to start with '/run/desktop/mnt/host/'. Append to that the exact location on your windows host, e.g. 'c/backup' which is equivalent to 'C:\backup'.)
- Another option is to enter a specific volume name here: nextcloud_aio_backupdir. This volume needs to be created beforehand manually by you in order to be able to use it.
+ {{ include('includes/backup-dirs.twig') }}
⚠️ Please note that the backup archive must be located in a subfolder of the folder that you enter here and the subfolder which contains the archive must be named 'borg'. Otherwise will the backup container not find the backup archive!
{% endif %}
{% else %}
@@ -359,12 +354,7 @@
- The folder path that you enter must start with / and must not end with /.
- An example for Linux is /mnt/backup.
- On Synology it could be /volume1/docker/nextcloud/backup.
- For macOS it may be /var/backup.
- On Windows it might be /run/desktop/mnt/host/c/backup. (This path is equivalent to 'C:\backup' on your Windows host so you need to translate the path accordingly. Hint: the path that you enter needs to start with '/run/desktop/mnt/host/'. Append to that the exact location on your windows host, e.g. 'c/backup' which is equivalent to 'C:\backup'.)
- Another option is to enter a specific volume name here: nextcloud_aio_backupdir. This volume needs to be created beforehand manually by you in order to be able to use it.
+ {{ include('includes/backup-dirs.twig') }}
{% endif %}
{% endif %}
diff --git a/php/templates/includes/backup-dirs.twig b/php/templates/includes/backup-dirs.twig
new file mode 100644
index 00000000..0056f479
--- /dev/null
+++ b/php/templates/includes/backup-dirs.twig
@@ -0,0 +1,6 @@
+The folder path that you enter must start with / and must not end with /.
+An example for Linux is /mnt/backup.
+On Synology it could be /volume1/docker/nextcloud/backup.
+For macOS it may be /var/backup.
+On Windows it might be /run/desktop/mnt/host/c/backup. (This path is equivalent to 'C:\backup' on your Windows host so you need to translate the path accordingly. Hint: the path that you enter needs to start with '/run/desktop/mnt/host/'. Append to that the exact location on your windows host, e.g. 'c/backup' which is equivalent to 'C:\backup'.)
+Another option is to enter a specific volume name here: nextcloud_aio_backupdir. This volume needs to be created beforehand manually by you in order to be able to use it.