From 9b4db7b1b1edb202cf2a8046174d835a4cec70e0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Apr 2024 14:49:05 -0700 Subject: [PATCH] Update 26 to 26.1.0 --- 26/cli/Dockerfile | 10 +++++----- 26/dind-rootless/Dockerfile | 4 ++-- 26/dind/Dockerfile | 8 ++++---- 26/windows/windowsservercore-1809/Dockerfile | 4 ++-- 26/windows/windowsservercore-ltsc2022/Dockerfile | 4 ++-- versions.json | 16 ++++++++-------- 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/26/cli/Dockerfile b/26/cli/Dockerfile index 40b80925d..415c984d9 100644 --- a/26/cli/Dockerfile +++ b/26/cli/Dockerfile @@ -21,23 +21,23 @@ RUN [ -e /etc/nsswitch.conf ] && grep '^hosts: files dns' /etc/nsswitch.conf RUN set -eux; \ addgroup -g 2375 -S docker -ENV DOCKER_VERSION 26.0.2 +ENV DOCKER_VERSION 26.1.0 RUN set -eux; \ \ apkArch="$(apk --print-arch)"; \ case "$apkArch" in \ 'x86_64') \ - url='https://download.docker.com/linux/static/stable/x86_64/docker-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-26.1.0.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-26.1.0.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-26.1.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-26.1.0.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/26/dind-rootless/Dockerfile b/26/dind-rootless/Dockerfile index 8d8a10b42..e162e20aa 100644 --- a/26/dind-rootless/Dockerfile +++ b/26/dind-rootless/Dockerfile @@ -24,10 +24,10 @@ RUN set -eux; \ apkArch="$(apk --print-arch)"; \ case "$apkArch" in \ 'x86_64') \ - url='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-26.1.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-26.1.0.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'rootless.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/26/dind/Dockerfile b/26/dind/Dockerfile index 11a531e63..90365a193 100644 --- a/26/dind/Dockerfile +++ b/26/dind/Dockerfile @@ -61,16 +61,16 @@ RUN set -eux; \ apkArch="$(apk --print-arch)"; \ case "$apkArch" in \ 'x86_64') \ - url='https://download.docker.com/linux/static/stable/x86_64/docker-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-26.1.0.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-26.1.0.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-26.1.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-26.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-26.1.0.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/26/windows/windowsservercore-1809/Dockerfile b/26/windows/windowsservercore-1809/Dockerfile index f10b7ba50..d0fcb1b46 100644 --- a/26/windows/windowsservercore-1809/Dockerfile +++ b/26/windows/windowsservercore-1809/Dockerfile @@ -15,8 +15,8 @@ RUN $newPath = ('{0}\docker;{1}' -f $env:ProgramFiles, $env:PATH); \ [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine); # doing this first to share cache across versions more aggressively -ENV DOCKER_VERSION 26.0.2 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-26.0.2.zip +ENV DOCKER_VERSION 26.1.0 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-26.1.0.zip # TODO ENV DOCKER_SHA256 # https://github.com/docker/docker-ce/blob/5b073ee2cf564edee5adca05eee574142f7627bb/components/packaging/static/hash_files !! # (no SHA file artifacts on download.docker.com yet as of 2017-06-07 though) diff --git a/26/windows/windowsservercore-ltsc2022/Dockerfile b/26/windows/windowsservercore-ltsc2022/Dockerfile index 8d970bb56..8730a3ee9 100644 --- a/26/windows/windowsservercore-ltsc2022/Dockerfile +++ b/26/windows/windowsservercore-ltsc2022/Dockerfile @@ -15,8 +15,8 @@ RUN $newPath = ('{0}\docker;{1}' -f $env:ProgramFiles, $env:PATH); \ [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine); # doing this first to share cache across versions more aggressively -ENV DOCKER_VERSION 26.0.2 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-26.0.2.zip +ENV DOCKER_VERSION 26.1.0 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-26.1.0.zip # TODO ENV DOCKER_SHA256 # https://github.com/docker/docker-ce/blob/5b073ee2cf564edee5adca05eee574142f7627bb/components/packaging/static/hash_files !! # (no SHA file artifacts on download.docker.com yet as of 2017-06-07 though) diff --git a/versions.json b/versions.json index dd9c14794..f25979fe6 100644 --- a/versions.json +++ b/versions.json @@ -284,21 +284,21 @@ "26": { "arches": { "amd64": { - "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-26.0.2.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-26.0.2.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-26.1.0.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-26.1.0.tgz" }, "arm32v6": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-26.0.2.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-26.1.0.tgz" }, "arm32v7": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-26.0.2.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-26.1.0.tgz" }, "arm64v8": { - "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-26.0.2.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-26.0.2.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-26.1.0.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-26.1.0.tgz" }, "windows-amd64": { - "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-26.0.2.zip" + "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-26.1.0.zip" } }, "buildx": { @@ -419,7 +419,7 @@ "windows/windowsservercore-ltsc2022", "windows/windowsservercore-1809" ], - "version": "26.0.2" + "version": "26.1.0" }, "26-rc": null }