diff --git a/27/cli/Dockerfile b/27/cli/Dockerfile index b760f1435..b9c5dd57e 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.3.1 +ENV DOCKER_VERSION 27.4.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.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-27.4.0.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-27.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-27.4.0.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-27.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-27.4.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-27.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-27.4.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 7cd245d36..78ebb15ef 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.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-27.4.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.4.0.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'rootless.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/27/dind/Dockerfile b/27/dind/Dockerfile index 273773df1..32648f95d 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.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-27.4.0.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-27.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-27.4.0.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-27.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-27.4.0.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-27.3.1.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-27.4.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 dda23a5a2..ae1f70eac 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.3.1 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.3.1.zip +ENV DOCKER_VERSION 27.4.0 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.4.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 dba77f1eb..7b0735472 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.3.1 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.3.1.zip +ENV DOCKER_VERSION 27.4.0 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.4.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 6d9053534..8cc3c02f2 100644 --- a/versions.json +++ b/versions.json @@ -2,21 +2,21 @@ "27": { "arches": { "amd64": { - "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-27.3.1.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-27.3.1.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-27.4.0.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-27.4.0.tgz" }, "arm32v6": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-27.3.1.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-27.4.0.tgz" }, "arm32v7": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-27.3.1.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-27.4.0.tgz" }, "arm64v8": { - "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-27.3.1.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.3.1.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-27.4.0.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.4.0.tgz" }, "windows-amd64": { - "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-27.3.1.zip" + "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-27.4.0.zip" } }, "buildx": { @@ -157,7 +157,7 @@ "windows/windowsservercore-ltsc2022", "windows/windowsservercore-1809" ], - "version": "27.3.1" + "version": "27.4.0" }, "27-rc": { "arches": {