From ba48b8134f14379e10ca48ea151b7d63f5b40e01 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 15 May 2026 13:06:07 +0000 Subject: [PATCH] Add default AIO_LOG_LEVEL=warn for watchtower and borgbackup containers Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/8383605e-b72f-4f47-a4a8-a930d2f8a25c Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com> --- Containers/borgbackup/Dockerfile | 3 ++- Containers/watchtower/Dockerfile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Containers/borgbackup/Dockerfile b/Containers/borgbackup/Dockerfile index c55f9ae4..cdb7dadb 100644 --- a/Containers/borgbackup/Dockerfile +++ b/Containers/borgbackup/Dockerfile @@ -31,4 +31,5 @@ LABEL com.centurylinklabs.watchtower.enable="false" \ org.opencontainers.image.source="https://github.com/nextcloud/all-in-one" \ org.opencontainers.image.vendor="Nextcloud" \ org.opencontainers.image.documentation="https://github.com/nextcloud/all-in-one/blob/main/readme.md" -ENV BORG_RETENTION_POLICY="--keep-within=7d --keep-weekly=4 --keep-monthly=6" +ENV BORG_RETENTION_POLICY="--keep-within=7d --keep-weekly=4 --keep-monthly=6" \ + AIO_LOG_LEVEL="warn" diff --git a/Containers/watchtower/Dockerfile b/Containers/watchtower/Dockerfile index 7b014a66..188c92e5 100644 --- a/Containers/watchtower/Dockerfile +++ b/Containers/watchtower/Dockerfile @@ -2,6 +2,7 @@ FROM golang:1.26.3-alpine3.23 AS go ENV WATCHTOWER_COMMIT_HASH=652c89577076f6bc6f2af4465217589641216ee3 +ENV AIO_LOG_LEVEL="warn" RUN set -ex; \ apk upgrade --no-cache -a; \