3.8.14-debian-10-r5 release

This commit is contained in:
Bitnami Bot 2021-03-09 02:41:52 +00:00
parent 6cb8d1d07f
commit 813c7a84d7
3 changed files with 12 additions and 3 deletions

View File

@ -24,7 +24,7 @@ COPY rootfs /
RUN /opt/bitnami/scripts/rabbitmq/postunpack.sh
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
ENV BITNAMI_APP_NAME="rabbitmq" \
BITNAMI_IMAGE_VERSION="3.8.14-debian-10-r4" \
BITNAMI_IMAGE_VERSION="3.8.14-debian-10-r5" \
LANG="en_US.UTF-8" \
LANGUAGE="en_US:en"

View File

@ -103,6 +103,8 @@ generate_cron_conf() {
local run_as="root"
local schedule="* * * * *"
local clean="true"
# Parse optional CLI flags
shift 2
while [[ "$#" -gt 0 ]]; do
@ -115,6 +117,9 @@ generate_cron_conf() {
shift
schedule="$1"
;;
--no-clean)
clean="false"
;;
*)
echo "Invalid command line flag ${1}" >&2
return 1
@ -124,7 +129,11 @@ generate_cron_conf() {
done
mkdir -p /etc/cron.d
echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name"
if "$clean"; then
echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name"
else
echo "${schedule} ${run_as} ${cmd}" >> /etc/cron.d/"$service_name"
fi
}
########################

View File

@ -51,7 +51,7 @@ Non-root container images add an extra layer of security and are generally recom
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`3.8`, `3.8-debian-10`, `3.8.14`, `3.8.14-debian-10-r4`, `latest` (3.8/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-rabbitmq/blob/3.8.14-debian-10-r4/3.8/debian-10/Dockerfile)
* [`3.8`, `3.8-debian-10`, `3.8.14`, `3.8.14-debian-10-r5`, `latest` (3.8/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-rabbitmq/blob/3.8.14-debian-10-r5/3.8/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/rabbitmq GitHub repo](https://github.com/bitnami/bitnami-docker-rabbitmq).