From fc40408b3cda03b569d976adcf8ac4654be1c542 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 22 Jul 2024 10:04:48 -0700 Subject: [PATCH] Update 27 to 27.1.0 --- 27/cli/Dockerfile | 10 +++++----- 27/dind-rootless/Dockerfile | 4 ++-- 27/dind/Dockerfile | 8 ++++---- 27/windows/windowsservercore-1809/Dockerfile | 4 ++-- 27/windows/windowsservercore-ltsc2022/Dockerfile | 4 ++-- versions.json | 16 ++++++++-------- 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/27/cli/Dockerfile b/27/cli/Dockerfile index 7dba2ff4f..805c39b0f 100644 --- a/27/cli/Dockerfile +++ b/27/cli/Dockerfile @@ -23,23 +23,23 @@ RUN [ -e /etc/nsswitch.conf ] && grep '^hosts: files dns' /etc/nsswitch.conf RUN set -eux; \ addgroup -g 2375 -S docker -ENV DOCKER_VERSION 27.0.3 +ENV DOCKER_VERSION 27.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-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-27.1.0.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-27.1.0.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-27.1.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-27.1.0.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/27/dind-rootless/Dockerfile b/27/dind-rootless/Dockerfile index eb1d5ddc9..51988f7d1 100644 --- a/27/dind-rootless/Dockerfile +++ b/27/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-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-27.1.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.1.0.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'rootless.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/27/dind/Dockerfile b/27/dind/Dockerfile index 1ac26045b..bfea6fe42 100644 --- a/27/dind/Dockerfile +++ b/27/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-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-27.1.0.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-27.1.0.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-27.1.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-27.0.3.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-27.1.0.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/27/windows/windowsservercore-1809/Dockerfile b/27/windows/windowsservercore-1809/Dockerfile index a43fb8097..a37f45595 100644 --- a/27/windows/windowsservercore-1809/Dockerfile +++ b/27/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 27.0.3 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.0.3.zip +ENV DOCKER_VERSION 27.1.0 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.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/27/windows/windowsservercore-ltsc2022/Dockerfile b/27/windows/windowsservercore-ltsc2022/Dockerfile index 500a494a5..52c308859 100644 --- a/27/windows/windowsservercore-ltsc2022/Dockerfile +++ b/27/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 27.0.3 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.0.3.zip +ENV DOCKER_VERSION 27.1.0 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.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 d1b2df27d..a202ec9d2 100644 --- a/versions.json +++ b/versions.json @@ -425,21 +425,21 @@ "27": { "arches": { "amd64": { - "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-27.0.3.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-27.0.3.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-27.1.0.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-27.1.0.tgz" }, "arm32v6": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-27.0.3.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-27.1.0.tgz" }, "arm32v7": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-27.0.3.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-27.1.0.tgz" }, "arm64v8": { - "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-27.0.3.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.0.3.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-27.1.0.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.1.0.tgz" }, "windows-amd64": { - "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-27.0.3.zip" + "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-27.1.0.zip" } }, "buildx": { @@ -560,7 +560,7 @@ "windows/windowsservercore-ltsc2022", "windows/windowsservercore-1809" ], - "version": "27.0.3" + "version": "27.1.0" }, "27-rc": null }