1.6.1-ol-7-r62 release

This commit is contained in:
Bitnami Bot 2019-11-07 13:42:52 +00:00
parent 299921277c
commit e1a6994ec5
4 changed files with 6 additions and 6 deletions

View File

@ -16,7 +16,7 @@ RUN curl --silent -L https://github.com/bitnami/render-template/releases/downloa
COPY rootfs /
RUN /postunpack.sh
ENV BITNAMI_APP_NAME="consul" \
BITNAMI_IMAGE_VERSION="1.6.1-ol-7-r61" \
BITNAMI_IMAGE_VERSION="1.6.1-ol-7-r62" \
PATH="/opt/bitnami/consul/bin:$PATH"
EXPOSE 8300 8301 8500 8600

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

@ -53,7 +53,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.6.1-ol-7-r61` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-consul/blob/1.6.1-ol-7-r61/1/ol-7/Dockerfile)
* [`1-ol-7`, `1.6.1-ol-7-r62` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-consul/blob/1.6.1-ol-7-r62/1/ol-7/Dockerfile)
* [`1-debian-9`, `1.6.1-debian-9-r47`, `1`, `1.6.1`, `1.6.1-r47`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-consul/blob/1.6.1-debian-9-r47/1/debian-9/Dockerfile)
Subscribe to project updates by watching the [bitnami/consul GitHub repo](https://github.com/bitnami/bitnami-docker-consul).