- Nextcloud AIO v11.10.0
+ {% set aio_version = include('includes/aio-version.twig') %}
+ Nextcloud AIO v{{ aio_version }}
{# Add 2nd tab warning #}
@@ -26,7 +27,7 @@
{# js for optional containers and additional containers forms #}
-
+
{% set hasBackupLocation = borg_backup_host_location or borg_remote_repo %}
{% set isAnyRunning = false %}
@@ -36,7 +37,7 @@
{% set isBackupOrRestoreRunning = false %}
{% set isApacheStarting = false %}
{# Setting newMajorVersion to '' will hide corresponding options/elements, can be set to an integer like 26 in order to show corresponding elements. If set, also increase installLatestMajor in https://github.com/nextcloud/all-in-one/blob/main/php/src/Controller/DockerController.php #}
- {% set newMajorVersionString = '25 Autumn' %}
+ {% set newMajorVersionString = '' %}
{% if is_backup_container_running == true %}
{% if borg_backup_mode == 'backup' or borg_backup_mode == 'restore' %}
@@ -45,29 +46,29 @@
{% endif %}
{% for container in containers %}
- {% if container.GetDisplayName() != '' and container.GetRunningState().value == 'running' %}
+ {% if container.displayName != '' and container.GetRunningState().value == 'running' %}
{% set isAnyRunning = true %}
{% endif %}
- {% if container.GetDisplayName() != '' and container.GetRestartingState().value == 'restarting' %}
+ {% if container.displayName != '' and container.GetRestartingState().value == 'restarting' %}
{% set isAnyRestarting = true %}
{% endif %}
- {% if container.GetIdentifier() == 'nextcloud-aio-watchtower' and container.GetRunningState().value == 'running' %}
+ {% if container.identifier == 'nextcloud-aio-watchtower' and container.GetRunningState().value == 'running' %}
{% set isWatchtowerRunning = true %}
{% endif %}
- {% if container.GetIdentifier() == 'nextcloud-aio-domaincheck' and container.GetRunningState().value == 'running' %}
+ {% if container.identifier == 'nextcloud-aio-domaincheck' and container.GetRunningState().value == 'running' %}
{% set isDomaincheckRunning = true %}
{% endif %}
- {% if container.GetIdentifier() == 'nextcloud-aio-apache' and container.GetStartingState().value == 'starting' %}
+ {% if container.identifier == 'nextcloud-aio-apache' and container.GetStartingState().value == 'starting' %}
{% set isApacheStarting = true %}
{% endif %}
{% endfor %}
{% if is_daily_backup_running == true %}
- Daily backup currently running. (Mastercontainer logs) (Borg backup container logs)
+ Daily backup currently running. (Mastercontainer logs) (Borg backup container logs)
{% if automatic_updates == true %}
This will update your containers, the mastercontainer and, on Saturdays, your Nextcloud apps if the backup is successful.
{% if is_mastercontainer_update_available == true %}
- When the mastercontainer is updated it will restart, making it unavailable for a moment. (Logs)
+ When the mastercontainer is updated it will restart, making it unavailable for a moment. (Logs)
{% endif %}
{% endif %}
{% if has_update_available == false %}
@@ -78,7 +79,7 @@
Reload ↻
If the daily backup is stuck somehow, you can unstick it by running sudo docker exec nextcloud-aio-mastercontainer rm /mnt/docker-aio-config/data/daily_backup_running and afterwards reloading this interface.
{% elseif isWatchtowerRunning == true %}
- Mastercontainer update currently running. Once the update is complete the mastercontainer will restart, making it unavailable for a moment. Please wait until it's done. (Logs)
+ Mastercontainer update currently running. Once the update is complete the mastercontainer will restart, making it unavailable for a moment. Please wait until it's done. (Logs)
Reload ↻
{% else %}
{% if is_backup_container_running == false and domain == "" %}
@@ -88,7 +89,7 @@
{% elseif is_mastercontainer_update_available == true %}
Mastercontainer update
⚠️ A mastercontainer update is available. Please click on the button below to update it. Afterwards, you will be able to proceed with the setup.
-
{% if skip_domain_validation == false %}
@@ -137,7 +141,7 @@
{% if hasBackupLocation %}
{% if borg_backup_mode in ['test', 'check'] %}
{% if backup_exit_code > 0 %}
- Last {{ borg_backup_mode }} failed! (Logs)
+ Last {{ borg_backup_mode }} failed! (Logs)
{% if borg_backup_mode == 'test' %}
Please adjust the path and/or the encryption password in order to make it work!
{% elseif borg_backup_mode == 'check' %}
@@ -145,7 +149,7 @@
Reveal repair option
Below is the option to repair the integrity of your backup. Please note: Please only use this after you have read the documentation above! (It will run the command 'borg check --repair' for you.)
-
{% endif %}
{% elseif backup_exit_code == 0 %}
- Last {{ borg_backup_mode }} successful! (Logs)
+ Last {{ borg_backup_mode }} successful! (Logs)
{% if borg_backup_mode == 'test' %}
Feel free to check the integrity of the backup archive below before starting the restore process in order to make ensure that the restore will work. This can take a long time though depending on the size of the backup archive and is thus not required.
-