1.9.2-ol-7-r3 release

This commit is contained in:
Bitnami Bot 2019-11-07 14:52:29 +00:00
parent 7c6b264930
commit a0030bc82e
4 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@ COPY rootfs /
RUN /postunpack.sh
RUN /postunpack-harbor-portal.sh
ENV BITNAMI_APP_NAME="harbor-portal" \
BITNAMI_IMAGE_VERSION="1.9.2-ol-7-r2" \
BITNAMI_IMAGE_VERSION="1.9.2-ol-7-r3" \
NAMI_PREFIX="/.nami" \
PATH="/opt/bitnami/nginx/sbin:/opt/bitnami/harbor/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

@ -39,7 +39,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/).
* [`1-ol-7`, `1.9.2-ol-7-r2` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-harbor-portal/blob/1.9.2-ol-7-r2/1/ol-7/Dockerfile)
* [`1-ol-7`, `1.9.2-ol-7-r3` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-harbor-portal/blob/1.9.2-ol-7-r3/1/ol-7/Dockerfile)
* [`1-debian-9`, `1.9.2-debian-9-r0`, `1`, `1.9.2`, `1.9.2-r0`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-harbor-portal/blob/1.9.2-debian-9-r0/1/debian-9/Dockerfile)
* [`1-centos-7`, `1.9.2-centos-7-r0` (1/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-harbor-portal/blob/1.9.2-centos-7-r0/1/centos-7/Dockerfile)