From 6ce82868a82eabfede377a1a5c2ac8c8c8402a8a Mon Sep 17 00:00:00 2001 From: The Oh Brothers Bot Date: Fri, 26 Jan 2024 01:12:51 +0000 Subject: [PATCH] Enhancement: Bump docker 24.0 variants to 24.0.8 Signed-off-by: The Oh Brothers Bot --- generate/definitions/versions.json | 2 +- variants/4.11.0-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.11.0-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.11.0-docker/Dockerfile | 12 +++++------ variants/4.12.0-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.12.0-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.12.0-docker/Dockerfile | 12 +++++------ variants/4.13.0-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.13.0-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.13.0-docker/Dockerfile | 12 +++++------ variants/4.14.1-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.14.1-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.14.1-docker/Dockerfile | 12 +++++------ variants/4.15.0-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.15.0-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.15.0-docker/Dockerfile | 12 +++++------ variants/4.16.1-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.16.1-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.16.1-docker/Dockerfile | 12 +++++------ variants/4.17.1-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.17.1-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.17.1-docker/Dockerfile | 12 +++++------ variants/4.18.0-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.18.0-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.18.0-docker/Dockerfile | 12 +++++------ variants/4.19.1-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.19.1-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.19.1-docker/Dockerfile | 12 +++++------ variants/4.20.1-docker-go-1.20.13/Dockerfile | 12 +++++------ .../Dockerfile | 20 +++++++++---------- variants/4.20.1-docker-rootless/Dockerfile | 20 +++++++++---------- variants/4.20.1-docker/Dockerfile | 12 +++++------ 41 files changed, 321 insertions(+), 321 deletions(-) diff --git a/generate/definitions/versions.json b/generate/definitions/versions.json index d687ce4a..ffc21c51 100644 --- a/generate/definitions/versions.json +++ b/generate/definitions/versions.json @@ -17,7 +17,7 @@ }, "docker": { "versions": [ - "24.0.7" + "24.0.8" ], "versionsChangeScope": "minor", "versionsNewScript": "Invoke-WebRequest https://api.github.com/repos/moby/moby/git/refs/tags | ConvertFrom-Json | % { $_.ref -replace 'refs/tags/v', '' } | ? { $_ -match '^\\d+\\.\\d+\\.\\d+$' } | Sort-Object { [version]$_ } -Descending | ? { $v = [version]$_; $v.Major -eq '24' -and $v.Minor -eq '0' }" diff --git a/variants/4.11.0-docker-go-1.20.13/Dockerfile b/variants/4.11.0-docker-go-1.20.13/Dockerfile index 7f04c9da..db4a0bb7 100644 --- a/variants/4.11.0-docker-go-1.20.13/Dockerfile +++ b/variants/4.11.0-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.11.0-docker-rootless-go-1.20.13/Dockerfile b/variants/4.11.0-docker-rootless-go-1.20.13/Dockerfile index 32d9163b..ac3a33d1 100644 --- a/variants/4.11.0-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.11.0-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.11.0-docker-rootless/Dockerfile b/variants/4.11.0-docker-rootless/Dockerfile index 4ae57a6a..a7a01161 100644 --- a/variants/4.11.0-docker-rootless/Dockerfile +++ b/variants/4.11.0-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.11.0-docker/Dockerfile b/variants/4.11.0-docker/Dockerfile index ed0eab34..7f683cd0 100644 --- a/variants/4.11.0-docker/Dockerfile +++ b/variants/4.11.0-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.12.0-docker-go-1.20.13/Dockerfile b/variants/4.12.0-docker-go-1.20.13/Dockerfile index f0249b88..4652d844 100644 --- a/variants/4.12.0-docker-go-1.20.13/Dockerfile +++ b/variants/4.12.0-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.12.0-docker-rootless-go-1.20.13/Dockerfile b/variants/4.12.0-docker-rootless-go-1.20.13/Dockerfile index ecbaceba..f8319cf1 100644 --- a/variants/4.12.0-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.12.0-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.12.0-docker-rootless/Dockerfile b/variants/4.12.0-docker-rootless/Dockerfile index c3c524c6..16ccc8a2 100644 --- a/variants/4.12.0-docker-rootless/Dockerfile +++ b/variants/4.12.0-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.12.0-docker/Dockerfile b/variants/4.12.0-docker/Dockerfile index 3459baab..20071a6c 100644 --- a/variants/4.12.0-docker/Dockerfile +++ b/variants/4.12.0-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.13.0-docker-go-1.20.13/Dockerfile b/variants/4.13.0-docker-go-1.20.13/Dockerfile index 38f938aa..bd52d05d 100644 --- a/variants/4.13.0-docker-go-1.20.13/Dockerfile +++ b/variants/4.13.0-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.13.0-docker-rootless-go-1.20.13/Dockerfile b/variants/4.13.0-docker-rootless-go-1.20.13/Dockerfile index 20e0485a..f45fa63b 100644 --- a/variants/4.13.0-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.13.0-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.13.0-docker-rootless/Dockerfile b/variants/4.13.0-docker-rootless/Dockerfile index fd412467..fd8235c5 100644 --- a/variants/4.13.0-docker-rootless/Dockerfile +++ b/variants/4.13.0-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.13.0-docker/Dockerfile b/variants/4.13.0-docker/Dockerfile index 1a4c85d1..50708a28 100644 --- a/variants/4.13.0-docker/Dockerfile +++ b/variants/4.13.0-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.14.1-docker-go-1.20.13/Dockerfile b/variants/4.14.1-docker-go-1.20.13/Dockerfile index 434a7900..a8b5b7ac 100644 --- a/variants/4.14.1-docker-go-1.20.13/Dockerfile +++ b/variants/4.14.1-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.14.1-docker-rootless-go-1.20.13/Dockerfile b/variants/4.14.1-docker-rootless-go-1.20.13/Dockerfile index ae84a637..928ee601 100644 --- a/variants/4.14.1-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.14.1-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.14.1-docker-rootless/Dockerfile b/variants/4.14.1-docker-rootless/Dockerfile index 01a5bd7a..25e8e940 100644 --- a/variants/4.14.1-docker-rootless/Dockerfile +++ b/variants/4.14.1-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.14.1-docker/Dockerfile b/variants/4.14.1-docker/Dockerfile index 3eefb1a2..121fff57 100644 --- a/variants/4.14.1-docker/Dockerfile +++ b/variants/4.14.1-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.15.0-docker-go-1.20.13/Dockerfile b/variants/4.15.0-docker-go-1.20.13/Dockerfile index c3108aa8..66e33963 100644 --- a/variants/4.15.0-docker-go-1.20.13/Dockerfile +++ b/variants/4.15.0-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.15.0-docker-rootless-go-1.20.13/Dockerfile b/variants/4.15.0-docker-rootless-go-1.20.13/Dockerfile index b3ab83ae..07300b7c 100644 --- a/variants/4.15.0-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.15.0-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.15.0-docker-rootless/Dockerfile b/variants/4.15.0-docker-rootless/Dockerfile index 1aee1995..9b65d79f 100644 --- a/variants/4.15.0-docker-rootless/Dockerfile +++ b/variants/4.15.0-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.15.0-docker/Dockerfile b/variants/4.15.0-docker/Dockerfile index b4030c8f..6a683a6a 100644 --- a/variants/4.15.0-docker/Dockerfile +++ b/variants/4.15.0-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.16.1-docker-go-1.20.13/Dockerfile b/variants/4.16.1-docker-go-1.20.13/Dockerfile index c3aff636..f7a392b4 100644 --- a/variants/4.16.1-docker-go-1.20.13/Dockerfile +++ b/variants/4.16.1-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.16.1-docker-rootless-go-1.20.13/Dockerfile b/variants/4.16.1-docker-rootless-go-1.20.13/Dockerfile index 1e34708f..2c34f969 100644 --- a/variants/4.16.1-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.16.1-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.16.1-docker-rootless/Dockerfile b/variants/4.16.1-docker-rootless/Dockerfile index a383883f..c39b972a 100644 --- a/variants/4.16.1-docker-rootless/Dockerfile +++ b/variants/4.16.1-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.16.1-docker/Dockerfile b/variants/4.16.1-docker/Dockerfile index 8c152601..2d7ee1ee 100644 --- a/variants/4.16.1-docker/Dockerfile +++ b/variants/4.16.1-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.17.1-docker-go-1.20.13/Dockerfile b/variants/4.17.1-docker-go-1.20.13/Dockerfile index d34e8810..aed6dbe7 100644 --- a/variants/4.17.1-docker-go-1.20.13/Dockerfile +++ b/variants/4.17.1-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.17.1-docker-rootless-go-1.20.13/Dockerfile b/variants/4.17.1-docker-rootless-go-1.20.13/Dockerfile index fa2ac8f3..cde86c8c 100644 --- a/variants/4.17.1-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.17.1-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.17.1-docker-rootless/Dockerfile b/variants/4.17.1-docker-rootless/Dockerfile index a3438b83..5138b190 100644 --- a/variants/4.17.1-docker-rootless/Dockerfile +++ b/variants/4.17.1-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.17.1-docker/Dockerfile b/variants/4.17.1-docker/Dockerfile index ba470c10..555da604 100644 --- a/variants/4.17.1-docker/Dockerfile +++ b/variants/4.17.1-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.18.0-docker-go-1.20.13/Dockerfile b/variants/4.18.0-docker-go-1.20.13/Dockerfile index 92f01572..fbd9d0db 100644 --- a/variants/4.18.0-docker-go-1.20.13/Dockerfile +++ b/variants/4.18.0-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.18.0-docker-rootless-go-1.20.13/Dockerfile b/variants/4.18.0-docker-rootless-go-1.20.13/Dockerfile index 27be43c7..2807af07 100644 --- a/variants/4.18.0-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.18.0-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.18.0-docker-rootless/Dockerfile b/variants/4.18.0-docker-rootless/Dockerfile index 767f9a31..77c920d3 100644 --- a/variants/4.18.0-docker-rootless/Dockerfile +++ b/variants/4.18.0-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.18.0-docker/Dockerfile b/variants/4.18.0-docker/Dockerfile index 1cac254c..f86a92e4 100644 --- a/variants/4.18.0-docker/Dockerfile +++ b/variants/4.18.0-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.19.1-docker-go-1.20.13/Dockerfile b/variants/4.19.1-docker-go-1.20.13/Dockerfile index cb8943fe..a5307703 100644 --- a/variants/4.19.1-docker-go-1.20.13/Dockerfile +++ b/variants/4.19.1-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.19.1-docker-rootless-go-1.20.13/Dockerfile b/variants/4.19.1-docker-rootless-go-1.20.13/Dockerfile index d7e5d497..85e5cdb1 100644 --- a/variants/4.19.1-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.19.1-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.19.1-docker-rootless/Dockerfile b/variants/4.19.1-docker-rootless/Dockerfile index 3f960224..0a61c133 100644 --- a/variants/4.19.1-docker-rootless/Dockerfile +++ b/variants/4.19.1-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.19.1-docker/Dockerfile b/variants/4.19.1-docker/Dockerfile index 5633075c..b49b5ba5 100644 --- a/variants/4.19.1-docker/Dockerfile +++ b/variants/4.19.1-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.20.1-docker-go-1.20.13/Dockerfile b/variants/4.20.1-docker-go-1.20.13/Dockerfile index 32659fc1..d013394c 100644 --- a/variants/4.20.1-docker-go-1.20.13/Dockerfile +++ b/variants/4.20.1-docker-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.20.1-docker-rootless-go-1.20.13/Dockerfile b/variants/4.20.1-docker-rootless-go-1.20.13/Dockerfile index 5135c7d5..812b21b4 100644 --- a/variants/4.20.1-docker-rootless-go-1.20.13/Dockerfile +++ b/variants/4.20.1-docker-rootless-go-1.20.13/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.20.1-docker-rootless/Dockerfile b/variants/4.20.1-docker-rootless/Dockerfile index d6dac874..216e4dba 100644 --- a/variants/4.20.1-docker-rootless/Dockerfile +++ b/variants/4.20.1-docker-rootless/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \ @@ -192,16 +192,16 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-rootless-extras-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-rootless-extras-24.0.8.tgz'; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.20.1-docker/Dockerfile b/variants/4.20.1-docker/Dockerfile index c768aade..fd01e018 100644 --- a/variants/4.20.1-docker/Dockerfile +++ b/variants/4.20.1-docker/Dockerfile @@ -143,23 +143,23 @@ RUN set -eux; \ RUN set -eux; \ case "$( uname -m )" in \ 'x86_64') \ - URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/x86_64/docker-24.0.8.tgz'; \ ;; \ 'armhf') \ - URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armel/docker-24.0.8.tgz'; \ ;; \ 'armv7') \ - URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/armhf/docker-24.0.8.tgz'; \ ;; \ 'aarch64') \ - URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.7.tgz'; \ + URL='https://download.docker.com/linux/static/stable/aarch64/docker-24.0.8.tgz'; \ ;; \ # These architectures are no longer supported as of docker 20.10.x # 'ppc64le') \ - # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/ppc64le/docker-24.0.8.tgz'; \ # ;; \ # 's390x') \ - # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.7.tgz'; \ + # URL='https://download.docker.com/linux/static/stable/s390x/docker-24.0.8.tgz'; \ # ;; \ *) \ echo "Architecture not supported"; \