Skip to content

Commit 1fcdf2b

Browse files
Merge pull request #231 from theohbrothers/enhancement/bump-docker-compose-2.37-to-2.37.3
Enhancement: Bump docker-compose 2.37 to 2.37.3
2 parents b9df35a + 042909e commit 1fcdf2b

File tree

73 files changed

+1225
-1225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1225
-1225
lines changed

generate/definitions/versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"docker-compose": {
4141
"versions": [
42-
"2.37.2",
42+
"2.37.3",
4343
"2.36.2",
4444
"2.35.1",
4545
"2.34.0",

variants/4.11.0-docker-go-1.20.14/Dockerfile

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -197,39 +197,39 @@ RUN apk add --no-cache docker-compose
197197

198198
# Install docker-compose
199199
RUN set -eux; \
200-
DOCKER_COMPOSE_VERSION=v2.37.2; \
200+
DOCKER_COMPOSE_VERSION=v2.37.3; \
201201
case "$( uname -m )" in \
202202
'x86') \
203-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
204-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
203+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
204+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
205205
;; \
206206
'x86_64') \
207-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
208-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
207+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
208+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
209209
;; \
210210
'armhf') \
211-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv6"; \
212-
SHA256=863412d376cb1341e2a6889aa58dc4b674a58350ceccc357c71284109a5cb4a2; \
211+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv6"; \
212+
SHA256=06213b27bb8437f7bb306766a89adc8c6f0e39907b9e8774488f16efe4b580ce; \
213213
;; \
214214
'armv7l') \
215-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv7"; \
216-
SHA256=33aa26709150e835992a8af58d590e32151473f78daea549ccd70bd5f96c3bbf; \
215+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv7"; \
216+
SHA256=2abef7f6a59d5402206f11461b69b6314a5dfdcfdd235b9acfce661d9255f2be; \
217217
;; \
218218
'aarch64') \
219-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-aarch64"; \
220-
SHA256=d2c195cf553e55d06761c192133a6a7b4d67d275c7f5ce673bbf8ecf20814061; \
219+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-aarch64"; \
220+
SHA256=15646d01e9291e69c9173a0d140d3ef44f912d26ffb2cbeeaf91aeb460dae59e; \
221221
;; \
222222
'ppc64le') \
223-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-ppc64le"; \
224-
SHA256=6c72243b9585cc741c8e90937fd28ca2c8f2fee8a7636b30d1bbf312df27e157; \
223+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-ppc64le"; \
224+
SHA256=1f7f9533bec72a38bc41afa0195189bd42d7be7374922fa40ea7424bab86f375; \
225225
;; \
226226
'riscv64') \
227-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-riscv64"; \
228-
SHA256=8448828a5fa46170b92fec62d928b753ba91e86cccace24a04187324b65836ac; \
227+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-riscv64"; \
228+
SHA256=1b377c5857be66aa83e77182f83d5527b6c0a8baa30141dba1d8586e2b535baf; \
229229
;; \
230230
's390x') \
231-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-s390x"; \
232-
SHA256=39d47d8aa2cec059b4dc5e9b627a1176bcce33d9090f237806cf59264fe55e89; \
231+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-s390x"; \
232+
SHA256=82549afc300c1318527ff693f22a41114bd7d5e787a63799c85bf511d8428cea; \
233233
;; \
234234
*) \
235235
echo "Architecture not supported"; \

variants/4.11.0-docker-rootless-go-1.20.14/Dockerfile

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -245,39 +245,39 @@ RUN apk add --no-cache docker-compose
245245

246246
# Install docker-compose
247247
RUN set -eux; \
248-
DOCKER_COMPOSE_VERSION=v2.37.2; \
248+
DOCKER_COMPOSE_VERSION=v2.37.3; \
249249
case "$( uname -m )" in \
250250
'x86') \
251-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
252-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
251+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
252+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
253253
;; \
254254
'x86_64') \
255-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
256-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
255+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
256+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
257257
;; \
258258
'armhf') \
259-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv6"; \
260-
SHA256=863412d376cb1341e2a6889aa58dc4b674a58350ceccc357c71284109a5cb4a2; \
259+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv6"; \
260+
SHA256=06213b27bb8437f7bb306766a89adc8c6f0e39907b9e8774488f16efe4b580ce; \
261261
;; \
262262
'armv7l') \
263-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv7"; \
264-
SHA256=33aa26709150e835992a8af58d590e32151473f78daea549ccd70bd5f96c3bbf; \
263+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv7"; \
264+
SHA256=2abef7f6a59d5402206f11461b69b6314a5dfdcfdd235b9acfce661d9255f2be; \
265265
;; \
266266
'aarch64') \
267-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-aarch64"; \
268-
SHA256=d2c195cf553e55d06761c192133a6a7b4d67d275c7f5ce673bbf8ecf20814061; \
267+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-aarch64"; \
268+
SHA256=15646d01e9291e69c9173a0d140d3ef44f912d26ffb2cbeeaf91aeb460dae59e; \
269269
;; \
270270
'ppc64le') \
271-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-ppc64le"; \
272-
SHA256=6c72243b9585cc741c8e90937fd28ca2c8f2fee8a7636b30d1bbf312df27e157; \
271+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-ppc64le"; \
272+
SHA256=1f7f9533bec72a38bc41afa0195189bd42d7be7374922fa40ea7424bab86f375; \
273273
;; \
274274
'riscv64') \
275-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-riscv64"; \
276-
SHA256=8448828a5fa46170b92fec62d928b753ba91e86cccace24a04187324b65836ac; \
275+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-riscv64"; \
276+
SHA256=1b377c5857be66aa83e77182f83d5527b6c0a8baa30141dba1d8586e2b535baf; \
277277
;; \
278278
's390x') \
279-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-s390x"; \
280-
SHA256=39d47d8aa2cec059b4dc5e9b627a1176bcce33d9090f237806cf59264fe55e89; \
279+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-s390x"; \
280+
SHA256=82549afc300c1318527ff693f22a41114bd7d5e787a63799c85bf511d8428cea; \
281281
;; \
282282
*) \
283283
echo "Architecture not supported"; \

variants/4.11.0-docker-rootless/Dockerfile

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -245,39 +245,39 @@ RUN apk add --no-cache docker-compose
245245

246246
# Install docker-compose
247247
RUN set -eux; \
248-
DOCKER_COMPOSE_VERSION=v2.37.2; \
248+
DOCKER_COMPOSE_VERSION=v2.37.3; \
249249
case "$( uname -m )" in \
250250
'x86') \
251-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
252-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
251+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
252+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
253253
;; \
254254
'x86_64') \
255-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
256-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
255+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
256+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
257257
;; \
258258
'armhf') \
259-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv6"; \
260-
SHA256=863412d376cb1341e2a6889aa58dc4b674a58350ceccc357c71284109a5cb4a2; \
259+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv6"; \
260+
SHA256=06213b27bb8437f7bb306766a89adc8c6f0e39907b9e8774488f16efe4b580ce; \
261261
;; \
262262
'armv7l') \
263-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv7"; \
264-
SHA256=33aa26709150e835992a8af58d590e32151473f78daea549ccd70bd5f96c3bbf; \
263+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv7"; \
264+
SHA256=2abef7f6a59d5402206f11461b69b6314a5dfdcfdd235b9acfce661d9255f2be; \
265265
;; \
266266
'aarch64') \
267-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-aarch64"; \
268-
SHA256=d2c195cf553e55d06761c192133a6a7b4d67d275c7f5ce673bbf8ecf20814061; \
267+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-aarch64"; \
268+
SHA256=15646d01e9291e69c9173a0d140d3ef44f912d26ffb2cbeeaf91aeb460dae59e; \
269269
;; \
270270
'ppc64le') \
271-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-ppc64le"; \
272-
SHA256=6c72243b9585cc741c8e90937fd28ca2c8f2fee8a7636b30d1bbf312df27e157; \
271+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-ppc64le"; \
272+
SHA256=1f7f9533bec72a38bc41afa0195189bd42d7be7374922fa40ea7424bab86f375; \
273273
;; \
274274
'riscv64') \
275-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-riscv64"; \
276-
SHA256=8448828a5fa46170b92fec62d928b753ba91e86cccace24a04187324b65836ac; \
275+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-riscv64"; \
276+
SHA256=1b377c5857be66aa83e77182f83d5527b6c0a8baa30141dba1d8586e2b535baf; \
277277
;; \
278278
's390x') \
279-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-s390x"; \
280-
SHA256=39d47d8aa2cec059b4dc5e9b627a1176bcce33d9090f237806cf59264fe55e89; \
279+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-s390x"; \
280+
SHA256=82549afc300c1318527ff693f22a41114bd7d5e787a63799c85bf511d8428cea; \
281281
;; \
282282
*) \
283283
echo "Architecture not supported"; \

variants/4.11.0-docker/Dockerfile

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -197,39 +197,39 @@ RUN apk add --no-cache docker-compose
197197

198198
# Install docker-compose
199199
RUN set -eux; \
200-
DOCKER_COMPOSE_VERSION=v2.37.2; \
200+
DOCKER_COMPOSE_VERSION=v2.37.3; \
201201
case "$( uname -m )" in \
202202
'x86') \
203-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
204-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
203+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
204+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
205205
;; \
206206
'x86_64') \
207-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
208-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
207+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
208+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
209209
;; \
210210
'armhf') \
211-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv6"; \
212-
SHA256=863412d376cb1341e2a6889aa58dc4b674a58350ceccc357c71284109a5cb4a2; \
211+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv6"; \
212+
SHA256=06213b27bb8437f7bb306766a89adc8c6f0e39907b9e8774488f16efe4b580ce; \
213213
;; \
214214
'armv7l') \
215-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv7"; \
216-
SHA256=33aa26709150e835992a8af58d590e32151473f78daea549ccd70bd5f96c3bbf; \
215+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv7"; \
216+
SHA256=2abef7f6a59d5402206f11461b69b6314a5dfdcfdd235b9acfce661d9255f2be; \
217217
;; \
218218
'aarch64') \
219-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-aarch64"; \
220-
SHA256=d2c195cf553e55d06761c192133a6a7b4d67d275c7f5ce673bbf8ecf20814061; \
219+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-aarch64"; \
220+
SHA256=15646d01e9291e69c9173a0d140d3ef44f912d26ffb2cbeeaf91aeb460dae59e; \
221221
;; \
222222
'ppc64le') \
223-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-ppc64le"; \
224-
SHA256=6c72243b9585cc741c8e90937fd28ca2c8f2fee8a7636b30d1bbf312df27e157; \
223+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-ppc64le"; \
224+
SHA256=1f7f9533bec72a38bc41afa0195189bd42d7be7374922fa40ea7424bab86f375; \
225225
;; \
226226
'riscv64') \
227-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-riscv64"; \
228-
SHA256=8448828a5fa46170b92fec62d928b753ba91e86cccace24a04187324b65836ac; \
227+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-riscv64"; \
228+
SHA256=1b377c5857be66aa83e77182f83d5527b6c0a8baa30141dba1d8586e2b535baf; \
229229
;; \
230230
's390x') \
231-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-s390x"; \
232-
SHA256=39d47d8aa2cec059b4dc5e9b627a1176bcce33d9090f237806cf59264fe55e89; \
231+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-s390x"; \
232+
SHA256=82549afc300c1318527ff693f22a41114bd7d5e787a63799c85bf511d8428cea; \
233233
;; \
234234
*) \
235235
echo "Architecture not supported"; \

variants/4.12.0-docker-go-1.20.14/Dockerfile

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -197,39 +197,39 @@ RUN apk add --no-cache docker-compose
197197

198198
# Install docker-compose
199199
RUN set -eux; \
200-
DOCKER_COMPOSE_VERSION=v2.37.2; \
200+
DOCKER_COMPOSE_VERSION=v2.37.3; \
201201
case "$( uname -m )" in \
202202
'x86') \
203-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
204-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
203+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
204+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
205205
;; \
206206
'x86_64') \
207-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-x86_64"; \
208-
SHA256=95db7bb2ed5d5fc790a12559b9092d641637c2d0190939c282b52a7af572a8a7; \
207+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-x86_64"; \
208+
SHA256=522181c447d831fb23134201d9cdc5cf365f913408124c678089ea62d6a2334c; \
209209
;; \
210210
'armhf') \
211-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv6"; \
212-
SHA256=863412d376cb1341e2a6889aa58dc4b674a58350ceccc357c71284109a5cb4a2; \
211+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv6"; \
212+
SHA256=06213b27bb8437f7bb306766a89adc8c6f0e39907b9e8774488f16efe4b580ce; \
213213
;; \
214214
'armv7l') \
215-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-armv7"; \
216-
SHA256=33aa26709150e835992a8af58d590e32151473f78daea549ccd70bd5f96c3bbf; \
215+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-armv7"; \
216+
SHA256=2abef7f6a59d5402206f11461b69b6314a5dfdcfdd235b9acfce661d9255f2be; \
217217
;; \
218218
'aarch64') \
219-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-aarch64"; \
220-
SHA256=d2c195cf553e55d06761c192133a6a7b4d67d275c7f5ce673bbf8ecf20814061; \
219+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-aarch64"; \
220+
SHA256=15646d01e9291e69c9173a0d140d3ef44f912d26ffb2cbeeaf91aeb460dae59e; \
221221
;; \
222222
'ppc64le') \
223-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-ppc64le"; \
224-
SHA256=6c72243b9585cc741c8e90937fd28ca2c8f2fee8a7636b30d1bbf312df27e157; \
223+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-ppc64le"; \
224+
SHA256=1f7f9533bec72a38bc41afa0195189bd42d7be7374922fa40ea7424bab86f375; \
225225
;; \
226226
'riscv64') \
227-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-riscv64"; \
228-
SHA256=8448828a5fa46170b92fec62d928b753ba91e86cccace24a04187324b65836ac; \
227+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-riscv64"; \
228+
SHA256=1b377c5857be66aa83e77182f83d5527b6c0a8baa30141dba1d8586e2b535baf; \
229229
;; \
230230
's390x') \
231-
URL="https://github.com/docker/compose/releases/download/v2.37.2/docker-compose-linux-s390x"; \
232-
SHA256=39d47d8aa2cec059b4dc5e9b627a1176bcce33d9090f237806cf59264fe55e89; \
231+
URL="https://github.com/docker/compose/releases/download/v2.37.3/docker-compose-linux-s390x"; \
232+
SHA256=82549afc300c1318527ff693f22a41114bd7d5e787a63799c85bf511d8428cea; \
233233
;; \
234234
*) \
235235
echo "Architecture not supported"; \

0 commit comments

Comments
 (0)