1.17.10-debian-10-r67 release

This commit is contained in:
Bitnami Bot 2020-06-12 09:10:28 +00:00
parent c46e3d7fb5
commit a41d2d46cf
3 changed files with 13 additions and 3 deletions

View File

@ -20,7 +20,7 @@ RUN ln -sf /dev/stderr /opt/bitnami/nginx/logs/error.log
COPY rootfs /
RUN /opt/bitnami/scripts/nginx/postunpack.sh
ENV BITNAMI_APP_NAME="nginx" \
BITNAMI_IMAGE_VERSION="1.17.10-debian-10-r66" \
BITNAMI_IMAGE_VERSION="1.17.10-debian-10-r67" \
NGINX_ENABLE_CUSTOM_PORTS="no" \
NGINX_HTTPS_PORT_NUMBER="" \
NGINX_HTTP_PORT_NUMBER="" \

View File

@ -54,7 +54,17 @@ wait_for_dns_lookup() {
# Machine IP
#########################
get_machine_ip() {
dns_lookup "$(hostname)"
local -a ip_addresses
local hostname
hostname="$(hostname)"
read -r -a ip_addresses <<< "$(dns_lookup "$hostname" | xargs echo)"
if [[ "${#ip_addresses[@]}" -gt 1 ]]; then
warn "Found more than one IP address associated to hostname ${hostname}: ${ip_addresses[*]}, will use ${ip_addresses[0]}"
elif [[ "${#ip_addresses[@]}" -lt 1 ]]; then
error "Could not find any IP address associated to hostname ${hostname}"
exit 1
fi
echo "${ip_addresses[0]}"
}
########################

View File

@ -45,7 +45,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`1.18-debian-10`, `1.18.0-debian-10-r42`, `1.18`, `1.18.0`, `latest` (1.18/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.18.0-debian-10-r42/1.18/debian-10/Dockerfile)
* [`1.17-debian-10`, `1.17.10-debian-10-r66`, `1.17`, `1.17.10` (1.17/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.17.10-debian-10-r66/1.17/debian-10/Dockerfile)
* [`1.17-debian-10`, `1.17.10-debian-10-r67`, `1.17`, `1.17.10` (1.17/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.17.10-debian-10-r67/1.17/debian-10/Dockerfile)
# Get this image