From 8f2c54ef36bf7cef1caa7d835731cc90bd39a894 Mon Sep 17 00:00:00 2001 From: Leonard Jonathan Oh Date: Fri, 1 Dec 2023 08:41:11 +0000 Subject: [PATCH] Enhancement: Bump docker-buildx to 0.12.0 and docker-compose to 2.23.3 --- generate/definitions/versions.json | 14 ++++ generate/templates/Dockerfile.ps1 | 6 +- variants/4.11.0-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.11.0-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.11.0-docker/Dockerfile | 64 +++++++++---------- variants/4.12.0-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.12.0-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.12.0-docker/Dockerfile | 64 +++++++++---------- variants/4.13.0-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.13.0-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.13.0-docker/Dockerfile | 64 +++++++++---------- variants/4.14.1-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.14.1-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.14.1-docker/Dockerfile | 64 +++++++++---------- variants/4.15.0-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.15.0-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.15.0-docker/Dockerfile | 64 +++++++++---------- variants/4.16.1-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.16.1-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.16.1-docker/Dockerfile | 64 +++++++++---------- variants/4.17.1-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.17.1-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.17.1-docker/Dockerfile | 64 +++++++++---------- variants/4.18.0-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.18.0-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.18.0-docker/Dockerfile | 64 +++++++++---------- variants/4.19.1-docker-go-1.20.11/Dockerfile | 64 +++++++++---------- .../Dockerfile | 64 +++++++++---------- variants/4.19.1-docker-rootless/Dockerfile | 64 +++++++++---------- variants/4.19.1-docker/Dockerfile | 64 +++++++++---------- 38 files changed, 1170 insertions(+), 1154 deletions(-) diff --git a/generate/definitions/versions.json b/generate/definitions/versions.json index fa51c103..b889ecca 100644 --- a/generate/definitions/versions.json +++ b/generate/definitions/versions.json @@ -21,6 +21,20 @@ "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' }" }, + "docker-buildx": { + "versions": [ + "0.12.0" + ], + "versionsChangeScope": "minor", + "versionsNewScript": "Invoke-WebRequest https://api.github.com/repos/docker/buildx/git/refs/tags | ConvertFrom-Json | % { $_.ref -replace 'refs/tags/v', '' } | ? { $_ -match '^\\d+\\.\\d+\\.\\d+$' } | Sort-Object { [version]$_ } -Descending | ? { $v = [version]$_; $v.Major -eq '0' -and $v.Minor -eq '12'}" + }, + "docker-compose": { + "versions": [ + "2.23.3" + ], + "versionsChangeScope": "minor", + "versionsNewScript": "Invoke-WebRequest https://api.github.com/repos/docker/compose/git/refs/tags | ConvertFrom-Json | % { $_.ref -replace 'refs/tags/v', '' } | ? { $_ -match '^\\d+\\.\\d+\\.\\d+$' } | Sort-Object { [version]$_ } -Descending | ? { $v = [version]$_; $v.Major -eq '2' } | Select-Object -First 1" + }, "go": { "versions": [ "1.20.11" diff --git a/generate/templates/Dockerfile.ps1 b/generate/templates/Dockerfile.ps1 index 7a2e4e85..a09be9cf 100644 --- a/generate/templates/Dockerfile.ps1 +++ b/generate/templates/Dockerfile.ps1 @@ -1,3 +1,5 @@ +$local:VERSIONS = @( Get-Content $PSScriptRoot/../definitions/versions.json -Encoding utf8 -raw | ConvertFrom-Json ) + @" # syntax=docker/dockerfile:1 FROM $( $VARIANT['_metadata']['distro'] ):$( $VARIANT['_metadata']['distro_version'] ) @@ -253,7 +255,7 @@ RUN apk add --no-cache docker-compose "@ - $DOCKER_COMPOSE_VERSION = 'v2.23.0' + $DOCKER_COMPOSE_VERSION = "v$( $local:VERSIONS.'docker-compose'.versions[0] )" Generate-DownloadBinary @{ binary = 'docker-compose' version = $DOCKER_COMPOSE_VERSION @@ -263,7 +265,7 @@ RUN apk add --no-cache docker-compose testCommand = 'docker compose version' } - $DOCKER_BUILDX_VERSION = 'v0.11.2' + $DOCKER_BUILDX_VERSION = "v$( $local:VERSIONS.'docker-buildx'.versions[0] )" Generate-DownloadBinary @{ binary = 'docker-buildx' version = $DOCKER_BUILDX_VERSION diff --git a/variants/4.11.0-docker-go-1.20.11/Dockerfile b/variants/4.11.0-docker-go-1.20.11/Dockerfile index 0cf6762c..32cff559 100644 --- a/variants/4.11.0-docker-go-1.20.11/Dockerfile +++ b/variants/4.11.0-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.11.0-docker-rootless-go-1.20.11/Dockerfile b/variants/4.11.0-docker-rootless-go-1.20.11/Dockerfile index f1229720..1e07d41f 100644 --- a/variants/4.11.0-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.11.0-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.11.0-docker-rootless/Dockerfile b/variants/4.11.0-docker-rootless/Dockerfile index 64ee5bba..f7116d48 100644 --- a/variants/4.11.0-docker-rootless/Dockerfile +++ b/variants/4.11.0-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.11.0-docker/Dockerfile b/variants/4.11.0-docker/Dockerfile index e64361e7..084ccd96 100644 --- a/variants/4.11.0-docker/Dockerfile +++ b/variants/4.11.0-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.12.0-docker-go-1.20.11/Dockerfile b/variants/4.12.0-docker-go-1.20.11/Dockerfile index 494bde19..9ae739fa 100644 --- a/variants/4.12.0-docker-go-1.20.11/Dockerfile +++ b/variants/4.12.0-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.12.0-docker-rootless-go-1.20.11/Dockerfile b/variants/4.12.0-docker-rootless-go-1.20.11/Dockerfile index 32b53f8f..ca0ac6bb 100644 --- a/variants/4.12.0-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.12.0-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.12.0-docker-rootless/Dockerfile b/variants/4.12.0-docker-rootless/Dockerfile index 616c3522..b47966a6 100644 --- a/variants/4.12.0-docker-rootless/Dockerfile +++ b/variants/4.12.0-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.12.0-docker/Dockerfile b/variants/4.12.0-docker/Dockerfile index 79109250..ac65ad08 100644 --- a/variants/4.12.0-docker/Dockerfile +++ b/variants/4.12.0-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.13.0-docker-go-1.20.11/Dockerfile b/variants/4.13.0-docker-go-1.20.11/Dockerfile index 1fd35ab6..f5389f6a 100644 --- a/variants/4.13.0-docker-go-1.20.11/Dockerfile +++ b/variants/4.13.0-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.13.0-docker-rootless-go-1.20.11/Dockerfile b/variants/4.13.0-docker-rootless-go-1.20.11/Dockerfile index aa3e781b..e598e903 100644 --- a/variants/4.13.0-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.13.0-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.13.0-docker-rootless/Dockerfile b/variants/4.13.0-docker-rootless/Dockerfile index b502f307..2d935127 100644 --- a/variants/4.13.0-docker-rootless/Dockerfile +++ b/variants/4.13.0-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.13.0-docker/Dockerfile b/variants/4.13.0-docker/Dockerfile index cc057060..4097332e 100644 --- a/variants/4.13.0-docker/Dockerfile +++ b/variants/4.13.0-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.14.1-docker-go-1.20.11/Dockerfile b/variants/4.14.1-docker-go-1.20.11/Dockerfile index aa29d890..a233a852 100644 --- a/variants/4.14.1-docker-go-1.20.11/Dockerfile +++ b/variants/4.14.1-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.14.1-docker-rootless-go-1.20.11/Dockerfile b/variants/4.14.1-docker-rootless-go-1.20.11/Dockerfile index 25b7af72..a8d4f06b 100644 --- a/variants/4.14.1-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.14.1-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.14.1-docker-rootless/Dockerfile b/variants/4.14.1-docker-rootless/Dockerfile index 86cfead4..a02d2ef1 100644 --- a/variants/4.14.1-docker-rootless/Dockerfile +++ b/variants/4.14.1-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.14.1-docker/Dockerfile b/variants/4.14.1-docker/Dockerfile index 5904ecf4..20599f74 100644 --- a/variants/4.14.1-docker/Dockerfile +++ b/variants/4.14.1-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.15.0-docker-go-1.20.11/Dockerfile b/variants/4.15.0-docker-go-1.20.11/Dockerfile index 974659b8..8512d1c2 100644 --- a/variants/4.15.0-docker-go-1.20.11/Dockerfile +++ b/variants/4.15.0-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.15.0-docker-rootless-go-1.20.11/Dockerfile b/variants/4.15.0-docker-rootless-go-1.20.11/Dockerfile index 13f1a180..5187472f 100644 --- a/variants/4.15.0-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.15.0-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.15.0-docker-rootless/Dockerfile b/variants/4.15.0-docker-rootless/Dockerfile index 4f6d8a86..847587b9 100644 --- a/variants/4.15.0-docker-rootless/Dockerfile +++ b/variants/4.15.0-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.15.0-docker/Dockerfile b/variants/4.15.0-docker/Dockerfile index e9412571..079ac592 100644 --- a/variants/4.15.0-docker/Dockerfile +++ b/variants/4.15.0-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.16.1-docker-go-1.20.11/Dockerfile b/variants/4.16.1-docker-go-1.20.11/Dockerfile index e4fcb750..f44cd774 100644 --- a/variants/4.16.1-docker-go-1.20.11/Dockerfile +++ b/variants/4.16.1-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.16.1-docker-rootless-go-1.20.11/Dockerfile b/variants/4.16.1-docker-rootless-go-1.20.11/Dockerfile index ba093d91..cc46d68c 100644 --- a/variants/4.16.1-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.16.1-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.16.1-docker-rootless/Dockerfile b/variants/4.16.1-docker-rootless/Dockerfile index 6550a001..8e6661ed 100644 --- a/variants/4.16.1-docker-rootless/Dockerfile +++ b/variants/4.16.1-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.16.1-docker/Dockerfile b/variants/4.16.1-docker/Dockerfile index 9d71b53b..bfd4074c 100644 --- a/variants/4.16.1-docker/Dockerfile +++ b/variants/4.16.1-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.17.1-docker-go-1.20.11/Dockerfile b/variants/4.17.1-docker-go-1.20.11/Dockerfile index 40f22907..c93e8651 100644 --- a/variants/4.17.1-docker-go-1.20.11/Dockerfile +++ b/variants/4.17.1-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.17.1-docker-rootless-go-1.20.11/Dockerfile b/variants/4.17.1-docker-rootless-go-1.20.11/Dockerfile index 2b4a6f5f..11093746 100644 --- a/variants/4.17.1-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.17.1-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.17.1-docker-rootless/Dockerfile b/variants/4.17.1-docker-rootless/Dockerfile index cabca4dc..a22ba283 100644 --- a/variants/4.17.1-docker-rootless/Dockerfile +++ b/variants/4.17.1-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.17.1-docker/Dockerfile b/variants/4.17.1-docker/Dockerfile index 224a1436..2779bda8 100644 --- a/variants/4.17.1-docker/Dockerfile +++ b/variants/4.17.1-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.18.0-docker-go-1.20.11/Dockerfile b/variants/4.18.0-docker-go-1.20.11/Dockerfile index d2c678c1..6b819e4b 100644 --- a/variants/4.18.0-docker-go-1.20.11/Dockerfile +++ b/variants/4.18.0-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.18.0-docker-rootless-go-1.20.11/Dockerfile b/variants/4.18.0-docker-rootless-go-1.20.11/Dockerfile index eff1bb81..c3f625d6 100644 --- a/variants/4.18.0-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.18.0-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.18.0-docker-rootless/Dockerfile b/variants/4.18.0-docker-rootless/Dockerfile index fa5056ca..39da1cf5 100644 --- a/variants/4.18.0-docker-rootless/Dockerfile +++ b/variants/4.18.0-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.18.0-docker/Dockerfile b/variants/4.18.0-docker/Dockerfile index c8843067..46ba6030 100644 --- a/variants/4.18.0-docker/Dockerfile +++ b/variants/4.18.0-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.19.1-docker-go-1.20.11/Dockerfile b/variants/4.19.1-docker-go-1.20.11/Dockerfile index c15bf482..02084651 100644 --- a/variants/4.19.1-docker-go-1.20.11/Dockerfile +++ b/variants/4.19.1-docker-go-1.20.11/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.19.1-docker-rootless-go-1.20.11/Dockerfile b/variants/4.19.1-docker-rootless-go-1.20.11/Dockerfile index bec7154a..6cf483af 100644 --- a/variants/4.19.1-docker-rootless-go-1.20.11/Dockerfile +++ b/variants/4.19.1-docker-rootless-go-1.20.11/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.19.1-docker-rootless/Dockerfile b/variants/4.19.1-docker-rootless/Dockerfile index 647c4b4a..72d3110c 100644 --- a/variants/4.19.1-docker-rootless/Dockerfile +++ b/variants/4.19.1-docker-rootless/Dockerfile @@ -233,39 +233,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -283,35 +283,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \ diff --git a/variants/4.19.1-docker/Dockerfile b/variants/4.19.1-docker/Dockerfile index ece98c93..2b05f103 100644 --- a/variants/4.19.1-docker/Dockerfile +++ b/variants/4.19.1-docker/Dockerfile @@ -189,39 +189,39 @@ RUN apk add --no-cache docker-compose # Install docker-compose RUN set -eux; \ - DOCKER_COMPOSE_VERSION=v2.23.0; \ + DOCKER_COMPOSE_VERSION=v2.23.3; \ case "$( uname -m )" in \ 'x86') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'x86_64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64"; \ - SHA256=6e06123399e5428fbd603564afdac74821fa0a7b4465e8a1a2359b362fc42fc4; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-x86_64"; \ + SHA256=a836e807951db448f991f303cddcc9a4ec69f4a49d58bc7d536cb91c77c04c33; \ ;; \ 'armhf') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv6"; \ - SHA256=75889ad81c5b0b07805920e398eaa7fb41c1321c81942daa07a5b5c5a1a27bdb; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv6"; \ + SHA256=b712693945360155842b578beace00effa723b604bfe1ccd6421645523e15d86; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-armv7"; \ - SHA256=2cd4af627462720384cfd2ba24d951854707d7c1fa37618c9e0319139f8a2012; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-armv7"; \ + SHA256=4068bcbe1dd90034c8fe8d2c65b600ba793fc19bdb65db3c2dbf80b8a078de6c; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-aarch64"; \ - SHA256=5c09e2c6b1cd9fc1be535690ee62712687ad12f0d08b14c27d30442f0e85b955; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-aarch64"; \ + SHA256=71f38f0923b8a9b80ad02c823ec3207d94677547aa5c618ca41b81d29fe6b9d9; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-ppc64le"; \ - SHA256=ff524f6d11050483abda01c5b1b33626c6c2f1b835df8514db6a42148d5095fc; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-ppc64le"; \ + SHA256=6110b0d30baee103c98ca5503bea24acb9d52bd333a67d3bf3c57d383c585c62; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-riscv64"; \ - SHA256=00302be14ad7d981eb86b834c09deb8186231b416c16454f9971bfcc0ec7e22f; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-riscv64"; \ + SHA256=3ac26e5f272deb1364c9b8760af44c4dbd87d6faa42fc53bfec95885cfa8ae77; \ ;; \ 's390x') \ - URL="https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-s390x"; \ - SHA256=323c2e92b3150ef94dc4201770e06ed7bacbe811abd77a23108cceea032fcf63; \ + URL="https://github.com/docker/compose/releases/download/v2.23.3/docker-compose-linux-s390x"; \ + SHA256=2886dd4eddaea1eeb03537bdc596ec8947eb3ef7908c955284f8aad9170d3098; \ ;; \ *) \ echo "Architecture not supported"; \ @@ -239,35 +239,35 @@ RUN set -eux; \ # Install docker-buildx RUN set -eux; \ - DOCKER_BUILDX_VERSION=v0.11.2; \ + DOCKER_BUILDX_VERSION=v0.12.0; \ case "$( uname -m )" in \ 'x86_64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-amd64"; \ - SHA256=311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64"; \ + SHA256=7c393b92c148a0ce26c76a2abc99960be1d1097f0471978d41dc51d0c1a4471e; \ ;; \ 'armhf') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v6"; \ - SHA256=c1bab0c7374406d5069f60b291971d71161fbd3c00e8a8fb1b68b9053eda8a4e; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v6"; \ + SHA256=62d9162f526c3bb7f67768a5b0d81a8b3ad0371406dfc1f0775e4f62dfca7fe1; \ ;; \ 'armv7l') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm-v7"; \ - SHA256=4defdf463ca2516d3f58fef69a6f78cbbb8baf16d936cdfc54df4a4be0d48f7f; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm-v7"; \ + SHA256=d941d6a5b072de775222d31d9f8467b4c1b1f56e3b08d1b78f828a9244c16464; \ ;; \ 'aarch64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64"; \ - SHA256=565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-arm64"; \ + SHA256=781caebb36551b035cb9dcfaf91088543d09c73c4a2549341e6417d86b8bbb50; \ ;; \ 'ppc64le') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-ppc64le"; \ - SHA256=c5f5cb9957890873a537c7ff5c4eef36132339622baeabb37a4b9b7251ddf836; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-ppc64le"; \ + SHA256=ab5bda4532528d6b0801c877999fce9def10c6a37624673fd13c668fdcde16b7; \ ;; \ 'riscv64') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-riscv64"; \ - SHA256=c0adc4b4625f7e3df7dcdec840568f918673f2ed4bcd03ca1e63ea2a5627ca35; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-riscv64"; \ + SHA256=a2b846919c44128c6db9165ad24545e7e10035b6f0ad01559fcfbb2a13017127; \ ;; \ 's390x') \ - URL="https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-s390x"; \ - SHA256=02916c76c3872fd0b3fa57e71403fee92b6be10f350b96a5ff99e7914dd277b8; \ + URL="https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-s390x"; \ + SHA256=81c2ada65624e2ac6bb4123f3a3bb933d04cfb08aa45fc55dd201ba523d96d30; \ ;; \ *) \ echo "Architecture not supported"; \