1.20.2-debian-10-r124 release

This commit is contained in:
Bitnami Bot
2022-03-26 07:30:51 +00:00
parent 182fd38745
commit fc042b1c1a
5 changed files with 31 additions and 30 deletions

View File

@@ -22,7 +22,7 @@ COPY rootfs /
RUN /opt/bitnami/scripts/nginx/postunpack.sh
ENV APP_VERSION="1.20.2" \
BITNAMI_APP_NAME="nginx" \
BITNAMI_IMAGE_VERSION="1.20.2-debian-10-r123" \
BITNAMI_IMAGE_VERSION="1.20.2-debian-10-r124" \
NGINX_HTTPS_PORT_NUMBER="" \
NGINX_HTTP_PORT_NUMBER="" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/nginx/sbin:$PATH"

View File

@@ -392,10 +392,6 @@ web_server_update_app_configuration() {
--hosts \
| --server-name \
| --server-aliases \
| --enable-http \
| --enable-https \
| --disable-http \
| --disable-https \
| --http-port \
| --https-port \
)

View File

@@ -486,31 +486,35 @@ nginx_update_app_configuration() {
shift
while [[ "$#" -gt 0 ]]; do
case "$1" in
--hosts | \
--server-aliases)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
read -r -a "$var_name" <<<"$1"
;;
--hosts \
| --server-aliases \
)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
read -r -a "$var_name" <<<"$1"
;;
# Common flags
--enable-http \
| --enable-https \
| --disable-http \
| --disable-https \
)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
declare "${var_name}=yes"
;;
--server-name \
| --http-port \
| --https-port \
)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
declare "${var_name}=${1}"
;;
# Common flags
--server-name | \
--enable-http | \
--enable-https | \
--disable-http | \
--disable-https | \
--http-port | \
--https-port)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
declare "${var_name}=${1}"
;;
*)
echo "Invalid command line flag $1" >&2
return 1
;;
*)
echo "Invalid command line flag $1" >&2
return 1
;;
esac
shift
done

View File

@@ -9,6 +9,7 @@
# 4. Environment variables set externally (i.e. current Bash context/Dockerfile/userdata)
# Load logging library
# shellcheck disable=SC1090,SC1091
. /opt/bitnami/scripts/liblog.sh
export BITNAMI_ROOT_DIR="/opt/bitnami"

View File

@@ -49,7 +49,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`1.21`, `1.21-debian-10`, `1.21.6`, `1.21.6-debian-10-r57`, `latest` (1.21/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.21.6-debian-10-r57/1.21/debian-10/Dockerfile)
* [`1.20`, `1.20-debian-10`, `1.20.2`, `1.20.2-debian-10-r123` (1.20/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.20.2-debian-10-r123/1.20/debian-10/Dockerfile)
* [`1.20`, `1.20-debian-10`, `1.20.2`, `1.20.2-debian-10-r124` (1.20/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-nginx/blob/1.20.2-debian-10-r124/1.20/debian-10/Dockerfile)
## Get this image