4.0.13-ol-7-r27 release
This commit is contained in:
parent
d9a2c6f04e
commit
30e6d851ad
|
|
@ -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.0.13-ol-7-r26" \
|
||||
BITNAMI_IMAGE_VERSION="4.0.13-ol-7-r27" \
|
||||
NAMI_PREFIX="/.nami" \
|
||||
PATH="/opt/bitnami/mongodb/bin:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
* [`4.2-ol-7`, `4.2.1-ol-7-r25` (4.2/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-ol-7-r25/4.2/ol-7/Dockerfile)
|
||||
* [`4.2-debian-9`, `4.2.1-debian-9-r18`, `4.2`, `4.2.1`, `4.2.1-r18` (4.2/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.2.1-debian-9-r18/4.2/debian-9/Dockerfile)
|
||||
* [`4.0-ol-7`, `4.0.13-ol-7-r26` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.13-ol-7-r26/4.0/ol-7/Dockerfile)
|
||||
* [`4.0-ol-7`, `4.0.13-ol-7-r27` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.13-ol-7-r27/4.0/ol-7/Dockerfile)
|
||||
* [`4.0-debian-9`, `4.0.13-debian-9-r17`, `4.0`, `4.0.13`, `4.0.13-r17`, `latest` (4.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/4.0.13-debian-9-r17/4.0/debian-9/Dockerfile)
|
||||
* [`3.6-ol-7`, `3.6.15-ol-7-r4` (3.6/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/3.6.15-ol-7-r4/3.6/ol-7/Dockerfile)
|
||||
* [`3.6-debian-9`, `3.6.15-debian-9-r2`, `3.6`, `3.6.15`, `3.6.15-r2` (3.6/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-mongodb/blob/3.6.15-debian-9-r2/3.6/debian-9/Dockerfile)
|
||||
|
|
|
|||
Loading…
Reference in New Issue