diff --git a/24/cli/Dockerfile b/24/cli/Dockerfile index db6cec899..aa5bea64b 100644 --- a/24/cli/Dockerfile +++ b/24/cli/Dockerfile @@ -17,23 +17,23 @@ RUN apk add --no-cache \ # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ -e /etc/nsswitch.conf ] && grep '^hosts: files dns' /etc/nsswitch.conf -ENV DOCKER_VERSION 24.0.5 +ENV DOCKER_VERSION 24.0.6 RUN set -eux; \ \ apkArch="$(apk --print-arch)"; \ case "$apkArch" in \ 'x86_64') \ - url='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.6.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-24.0.6.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-24.0.6.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.6.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/24/dind-rootless/Dockerfile b/24/dind-rootless/Dockerfile index 4a7d1c94e..766214d1f 100644 --- a/24/dind-rootless/Dockerfile +++ b/24/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-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.6.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.6.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'rootless.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/24/dind/Dockerfile b/24/dind/Dockerfile index d5d20698e..8733b1481 100644 --- a/24/dind/Dockerfile +++ b/24/dind/Dockerfile @@ -42,16 +42,16 @@ RUN set -eux; \ apkArch="$(apk --print-arch)"; \ case "$apkArch" in \ 'x86_64') \ - url='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.6.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-24.0.6.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-24.0.6.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.5.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.6.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/24/windows/windowsservercore-1809/Dockerfile b/24/windows/windowsservercore-1809/Dockerfile index c57a285b3..e96e4a752 100644 --- a/24/windows/windowsservercore-1809/Dockerfile +++ b/24/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 24.0.5 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-24.0.5.zip +ENV DOCKER_VERSION 24.0.6 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-24.0.6.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/24/windows/windowsservercore-ltsc2022/Dockerfile b/24/windows/windowsservercore-ltsc2022/Dockerfile index 5be3762c5..18386d848 100644 --- a/24/windows/windowsservercore-ltsc2022/Dockerfile +++ b/24/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 24.0.5 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-24.0.5.zip +ENV DOCKER_VERSION 24.0.6 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-24.0.6.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 6c146fca0..83b8a4a57 100644 --- a/versions.json +++ b/versions.json @@ -144,21 +144,21 @@ "24": { "arches": { "amd64": { - "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-24.0.5.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.5.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-24.0.6.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.6.tgz" }, "arm32v6": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-24.0.5.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-24.0.6.tgz" }, "arm32v7": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-24.0.5.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-24.0.6.tgz" }, "arm64v8": { - "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-24.0.5.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.5.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-24.0.6.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.6.tgz" }, "windows-amd64": { - "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-24.0.5.zip" + "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-24.0.6.zip" } }, "buildx": { @@ -280,7 +280,7 @@ "windows/windowsservercore-ltsc2022", "windows/windowsservercore-1809" ], - "version": "24.0.5" + "version": "24.0.6" }, "24-rc": null }