From d470c3a52f360272daa549c03abc327a40337846 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Wed, 24 Jan 2024 04:05:09 -0800 Subject: [PATCH] Update 25 to 25.0.1 --- 25/cli/Dockerfile | 10 +++++----- 25/dind-rootless/Dockerfile | 4 ++-- 25/dind/Dockerfile | 8 ++++---- 25/windows/windowsservercore-1809/Dockerfile | 4 ++-- 25/windows/windowsservercore-ltsc2022/Dockerfile | 4 ++-- versions.json | 16 ++++++++-------- 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/25/cli/Dockerfile b/25/cli/Dockerfile index 7bf9dfe90..cb7b93b8a 100644 --- a/25/cli/Dockerfile +++ b/25/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 25.0.0 +ENV DOCKER_VERSION 25.0.1 RUN set -eux; \ \ apkArch="$(apk --print-arch)"; \ case "$apkArch" in \ 'x86_64') \ - url='https://download.docker.com/linux/static/stable/x86_64/docker-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-25.0.1.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-25.0.1.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-25.0.1.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-25.0.1.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/25/dind-rootless/Dockerfile b/25/dind-rootless/Dockerfile index ffe84cd8d..69273926b 100644 --- a/25/dind-rootless/Dockerfile +++ b/25/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-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-25.0.1.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-25.0.1.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'rootless.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/25/dind/Dockerfile b/25/dind/Dockerfile index 20cc764f3..8ce406131 100644 --- a/25/dind/Dockerfile +++ b/25/dind/Dockerfile @@ -67,16 +67,16 @@ RUN set -eux; \ apkArch="$(apk --print-arch)"; \ case "$apkArch" in \ 'x86_64') \ - url='https://download.docker.com/linux/static/stable/x86_64/docker-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/x86_64/docker-25.0.1.tgz'; \ ;; \ 'armhf') \ - url='https://download.docker.com/linux/static/stable/armel/docker-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/armel/docker-25.0.1.tgz'; \ ;; \ 'armv7') \ - url='https://download.docker.com/linux/static/stable/armhf/docker-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/armhf/docker-25.0.1.tgz'; \ ;; \ 'aarch64') \ - url='https://download.docker.com/linux/static/stable/aarch64/docker-25.0.0.tgz'; \ + url='https://download.docker.com/linux/static/stable/aarch64/docker-25.0.1.tgz'; \ ;; \ *) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; \ esac; \ diff --git a/25/windows/windowsservercore-1809/Dockerfile b/25/windows/windowsservercore-1809/Dockerfile index 9a606120f..0dcdd07c3 100644 --- a/25/windows/windowsservercore-1809/Dockerfile +++ b/25/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 25.0.0 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-25.0.0.zip +ENV DOCKER_VERSION 25.0.1 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-25.0.1.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/25/windows/windowsservercore-ltsc2022/Dockerfile b/25/windows/windowsservercore-ltsc2022/Dockerfile index 881034e48..529b4a0ae 100644 --- a/25/windows/windowsservercore-ltsc2022/Dockerfile +++ b/25/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 25.0.0 -ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-25.0.0.zip +ENV DOCKER_VERSION 25.0.1 +ENV DOCKER_URL https://download.docker.com/win/static/stable/x86_64/docker-25.0.1.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 a140c8957..37a9ca207 100644 --- a/versions.json +++ b/versions.json @@ -144,21 +144,21 @@ "25": { "arches": { "amd64": { - "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-25.0.0.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-25.0.0.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-25.0.1.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-25.0.1.tgz" }, "arm32v6": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-25.0.0.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armel/docker-25.0.1.tgz" }, "arm32v7": { - "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-25.0.0.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/armhf/docker-25.0.1.tgz" }, "arm64v8": { - "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-25.0.0.tgz", - "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-25.0.0.tgz" + "dockerUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-25.0.1.tgz", + "rootlessExtrasUrl": "https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-25.0.1.tgz" }, "windows-amd64": { - "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-25.0.0.zip" + "dockerUrl": "https://download.docker.com/win/static/stable/x86_64/docker-25.0.1.zip" } }, "buildx": { @@ -280,7 +280,7 @@ "windows/windowsservercore-ltsc2022", "windows/windowsservercore-1809" ], - "version": "25.0.0" + "version": "25.0.1" }, "25-rc": null }