diff --git a/27/cli/Dockerfile b/27/cli/Dockerfile index 1963ca690..1471fb1a0 100644 --- a/27/cli/Dockerfile +++ b/27/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 27.0.2 +ENV DOCKER_VERSION 27.0.3 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.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-27.0.3.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-27.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-27.0.3.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-27.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-27.0.3.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-27.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-27.0.3.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 5eeb5f851..eb1d5ddc9 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.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-27.0.3.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.0.3.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'rootless.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/27/dind/Dockerfile b/27/dind/Dockerfile index 5c59bc04f..1ac26045b 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.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-27.0.3.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-27.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-27.0.3.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-27.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-27.0.3.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-27.0.2.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-27.0.3.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 6586bbfe0..51555ecf2 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.2 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.0.2.zip +ENV DOCKER_VERSION 27.0.3 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.0.3.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 b051d1a03..48fad8374 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.2 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.0.2.zip +ENV DOCKER_VERSION 27.0.3 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-27.0.3.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 8afde15e8..0bf9a0913 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.2.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-27.0.2.tgz" + "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" }, "arm32v6": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-27.0.2.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-27.0.3.tgz" }, "arm32v7": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-27.0.2.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-27.0.3.tgz" }, "arm64v8": { - "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-27.0.2.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-27.0.2.tgz" + "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" }, "windows-amd64": { - "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-27.0.2.zip" + "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-27.0.3.zip" } }, "buildx": { @@ -560,7 +560,7 @@ "windows/windowsservercore-ltsc2022", "windows/windowsservercore-1809" ], - "version": "27.0.2" + "version": "27.0.3" }, "27-rc": null }