Merge pull request #766 from infosiftr/4.1-ga

Update to 4.1.0 (GA)
This commit is contained in:
yosifkit 2025-04-15 11:56:11 -07:00 committed by GitHub
commit 0ff8ff819e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 11 additions and 10 deletions

View File

@ -23,7 +23,7 @@ ARG BUILDKIT_SBOM_SCAN_STAGE=true
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally # Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
ARG PGP_KEYSERVER=keyserver.ubuntu.com ARG PGP_KEYSERVER=keyserver.ubuntu.com
# If you are building this image locally and are getting `gpg: keyserver receive failed: No data` errors, # If you are building this image locally and are getting `gpg: keyserver receive failed: No data` errors,
# run the build with a different PGP_KEYSERVER, e.g. docker build --tag rabbitmq:4.1-rc --build-arg PGP_KEYSERVER=pgpkeys.eu 4.1-rc/ubuntu # run the build with a different PGP_KEYSERVER, e.g. docker build --tag rabbitmq:4.1 --build-arg PGP_KEYSERVER=pgpkeys.eu 4.1/ubuntu
# For context, see https://github.com/docker-library/official-images/issues/4252 # For context, see https://github.com/docker-library/official-images/issues/4252
ENV OPENSSL_VERSION 3.3.3 ENV OPENSSL_VERSION 3.3.3
@ -250,7 +250,7 @@ RUN set -eux; \
tzdata tzdata
# Use the latest stable RabbitMQ release (https://www.rabbitmq.com/download.html) # Use the latest stable RabbitMQ release (https://www.rabbitmq.com/download.html)
ENV RABBITMQ_VERSION 4.1.0-rc.2 ENV RABBITMQ_VERSION 4.1.0
# https://www.rabbitmq.com/signatures.html#importing-gpg # https://www.rabbitmq.com/signatures.html#importing-gpg
ENV RABBITMQ_PGP_KEY_ID 0x0A9AF2115F4687BD29803A206B73A36E6026DFCA ENV RABBITMQ_PGP_KEY_ID 0x0A9AF2115F4687BD29803A206B73A36E6026DFCA
ENV RABBITMQ_HOME /opt/rabbitmq ENV RABBITMQ_HOME /opt/rabbitmq

View File

@ -4,7 +4,7 @@
# PLEASE DO NOT EDIT IT DIRECTLY. # PLEASE DO NOT EDIT IT DIRECTLY.
# #
FROM rabbitmq:4.1-rc-alpine FROM rabbitmq:4.1-alpine
RUN set -eux; \ RUN set -eux; \
rabbitmq-plugins enable --offline rabbitmq_management; \ rabbitmq-plugins enable --offline rabbitmq_management; \

View File

@ -26,7 +26,7 @@ ARG BUILDKIT_SBOM_SCAN_STAGE=true
# Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally # Default to a PGP keyserver that pgp-happy-eyeballs recognizes, but allow for substitutions locally
ARG PGP_KEYSERVER=keyserver.ubuntu.com ARG PGP_KEYSERVER=keyserver.ubuntu.com
# If you are building this image locally and are getting `gpg: keyserver receive failed: No data` errors, # If you are building this image locally and are getting `gpg: keyserver receive failed: No data` errors,
# run the build with a different PGP_KEYSERVER, e.g. docker build --tag rabbitmq:4.1-rc --build-arg PGP_KEYSERVER=pgpkeys.eu 4.1-rc/ubuntu # run the build with a different PGP_KEYSERVER, e.g. docker build --tag rabbitmq:4.1 --build-arg PGP_KEYSERVER=pgpkeys.eu 4.1/ubuntu
# For context, see https://github.com/docker-library/official-images/issues/4252 # For context, see https://github.com/docker-library/official-images/issues/4252
ENV OPENSSL_VERSION 3.3.3 ENV OPENSSL_VERSION 3.3.3
@ -230,7 +230,7 @@ RUN set -eux; \
ln -sf "$RABBITMQ_DATA_DIR/.erlang.cookie" /root/.erlang.cookie ln -sf "$RABBITMQ_DATA_DIR/.erlang.cookie" /root/.erlang.cookie
# Use the latest stable RabbitMQ release (https://www.rabbitmq.com/download.html) # Use the latest stable RabbitMQ release (https://www.rabbitmq.com/download.html)
ENV RABBITMQ_VERSION 4.1.0-rc.2 ENV RABBITMQ_VERSION 4.1.0
# https://www.rabbitmq.com/signatures.html#importing-gpg # https://www.rabbitmq.com/signatures.html#importing-gpg
ENV RABBITMQ_PGP_KEY_ID 0x0A9AF2115F4687BD29803A206B73A36E6026DFCA ENV RABBITMQ_PGP_KEY_ID 0x0A9AF2115F4687BD29803A206B73A36E6026DFCA
ENV RABBITMQ_HOME /opt/rabbitmq ENV RABBITMQ_HOME /opt/rabbitmq

View File

@ -4,7 +4,7 @@
# PLEASE DO NOT EDIT IT DIRECTLY. # PLEASE DO NOT EDIT IT DIRECTLY.
# #
FROM rabbitmq:4.1-rc FROM rabbitmq:4.1
RUN set -eux; \ RUN set -eux; \
rabbitmq-plugins enable --offline rabbitmq_management; \ rabbitmq-plugins enable --offline rabbitmq_management; \

View File

@ -2,7 +2,7 @@
set -Eeuo pipefail set -Eeuo pipefail
declare -A aliases=( declare -A aliases=(
[4.0]='4 latest' [4.1]='4 latest'
[3.13]='3' [3.13]='3'
) )
defaultVariant='ubuntu' defaultVariant='ubuntu'

View File

@ -35,7 +35,7 @@
"version": "4.0.9" "version": "4.0.9"
}, },
"4.0-rc": null, "4.0-rc": null,
"4.1-rc": { "4.1": {
"alpine": { "alpine": {
"version": "3.21" "version": "3.21"
}, },
@ -50,6 +50,7 @@
"ubuntu": { "ubuntu": {
"version": "24.04" "version": "24.04"
}, },
"version": "4.1.0-rc.2" "version": "4.1.0"
} },
"4.1-rc": null
} }