From cb3dffc7fc9bbc3e340b21bdec2dd792e7fbc1c5 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 30 Jun 2025 22:24:33 +0200 Subject: [PATCH] Use docker 28.1.1 since that is the highest on ubuntu 20 focal --- CHANGES | 2 +- scripts/installer.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index fc3ecdec2..a5935a6d6 100644 --- a/CHANGES +++ b/CHANGES @@ -2931,7 +2931,7 @@ * notifications: email notification when cloudron update failed * notifications: email notification for low disk space (90%) * node: update to 22.17.0 -* docker: update to 28.3.0 +* docker: update to 28.1.1 * s3: automatically abort old multipart uploads * notifications: validate domains configs * ldap: automatically detect pagination support diff --git a/scripts/installer.sh b/scripts/installer.sh index 91af656b0..ffebc5b8e 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -106,7 +106,7 @@ fi # https://docs.docker.com/engine/installation/linux/ubuntulinux/ # https://download.docker.com/linux/ubuntu/dists/noble/pool/stable/amd64/ -readonly docker_version="28.3.0" +readonly docker_version="28.1.1" readonly containerd_version="1.7.27" if ! which docker 2>/dev/null || [[ $(docker version --format {{.Client.Version}}) != "${docker_version}" ]]; then log "installing/updating docker"