4.2.1-ol-7-r4 release

This commit is contained in:
Bitnami Bot 2019-11-07 16:23:00 +00:00
parent deb5421690
commit 82a40c88f2
4 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ RUN curl --silent -L https://github.com/mikefarah/yq/releases/download/2.4.0/yq_
COPY rootfs /
RUN /postunpack.sh
ENV BITNAMI_APP_NAME="mongodb" \
BITNAMI_IMAGE_VERSION="4.2.1-ol-7-r3" \
BITNAMI_IMAGE_VERSION="4.2.1-ol-7-r4" \
NAMI_PREFIX="/.nami" \
PATH="/opt/bitnami/mongodb/bin:$PATH"

View File

@ -35,7 +35,7 @@ ensure_dir_exists() {
local owner="${2:-}"
mkdir -p "${dir}"
if [[ "$owner" != "" ]]; then
if [[ -n $owner ]]; then
owned_by "$dir" "$owner"
fi
}

View File

@ -13,7 +13,7 @@
#########################
dns_lookup() {
local host="${1:?host is missing}"
getent ahosts "$host" | awk '/STREAM/ {print $1 }'
getent ahosts "$host" | awk '/STREAM/ {print $1 }'
}
########################
@ -36,9 +36,9 @@ get_machine_ip() {
#########################
is_hostname_resolved() {
local -r host="${1:?missing value}"
if dns_lookup "$host" > /dev/null; then
if [[ -n "$(dns_lookup "$host")" ]]; then
true
else
false
false
fi
}

View File

@ -48,7 +48,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/containers/how-to/understand-rolling-tags-containers/).
* [`4.2-ol-7`, `4.2.1-ol-7-r3` (4.2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-ol-7-r3/4.2/ol-7/Dockerfile)
* [`4.2-ol-7`, `4.2.1-ol-7-r4` (4.2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-ol-7-r4/4.2/ol-7/Dockerfile)
* [`4.2-debian-9`, `4.2.1-debian-9-r2`, `4.2`, `4.2.1`, `4.2.1-r2` (4.2/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-debian-9-r2/4.2/debian-9/Dockerfile)
* [`4.2-centos-7`, `4.2.1-centos-7-r3` (4.2/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-centos-7-r3/4.2/centos-7/Dockerfile)
* [`4.0-ol-7`, `4.0.13-ol-7-r4` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.13-ol-7-r4/4.0/ol-7/Dockerfile)