[bitnami/nginx-intel] Release 0.4.9-debian-11-r18 (#19870)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
daec3133c1
commit
b0608fe96d
|
|
@ -4,7 +4,8 @@ ARG TARGETARCH
|
||||||
|
|
||||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||||
org.opencontainers.image.ref.name="0.4.9-debian-11-r17" \
|
org.opencontainers.image.licenses="Apache-2.0" \
|
||||||
|
org.opencontainers.image.ref.name="0.4.9-debian-11-r18" \
|
||||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/nginx-intel" \
|
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/nginx-intel" \
|
||||||
org.opencontainers.image.title="nginx-intel" \
|
org.opencontainers.image.title="nginx-intel" \
|
||||||
org.opencontainers.image.vendor="VMware, Inc." \
|
org.opencontainers.image.vendor="VMware, Inc." \
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ get_sematic_version () {
|
||||||
|
|
||||||
while [[ $i -lt $n ]]; do
|
while [[ $i -lt $n ]]; do
|
||||||
if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then
|
if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then
|
||||||
version_sections[$j]=${BASH_REMATCH[$i]}
|
version_sections[j]="${BASH_REMATCH[$i]}"
|
||||||
((j++))
|
((j++))
|
||||||
fi
|
fi
|
||||||
((i++))
|
((i++))
|
||||||
|
|
|
||||||
|
|
@ -252,14 +252,14 @@ ensure_nginx_app_configuration_exists() {
|
||||||
--server-aliases)
|
--server-aliases)
|
||||||
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
||||||
shift
|
shift
|
||||||
read -r -a "$var_name" <<<"$1"
|
read -r -a "${var_name?}" <<<"$1"
|
||||||
;;
|
;;
|
||||||
--disable | \
|
--disable | \
|
||||||
--disable-http | \
|
--disable-http | \
|
||||||
--disable-https)
|
--disable-https)
|
||||||
|
|
||||||
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
||||||
export "${var_name}=yes"
|
export "${var_name?}=yes"
|
||||||
;;
|
;;
|
||||||
--type | \
|
--type | \
|
||||||
--server-name | \
|
--server-name | \
|
||||||
|
|
@ -273,7 +273,7 @@ ensure_nginx_app_configuration_exists() {
|
||||||
|
|
||||||
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
||||||
shift
|
shift
|
||||||
export "${var_name}"="$1"
|
export "${var_name?}"="$1"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Invalid command line flag $1" >&2
|
echo "Invalid command line flag $1" >&2
|
||||||
|
|
@ -419,7 +419,7 @@ ensure_nginx_prefix_configuration_exists() {
|
||||||
|
|
||||||
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
||||||
shift
|
shift
|
||||||
declare "${var_name}"="$1"
|
declare "${var_name?}"="$1"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Invalid command line flag $1" >&2
|
echo "Invalid command line flag $1" >&2
|
||||||
|
|
@ -499,7 +499,7 @@ nginx_update_app_configuration() {
|
||||||
)
|
)
|
||||||
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
||||||
shift
|
shift
|
||||||
read -r -a "$var_name" <<<"$1"
|
read -r -a "${var_name?}" <<<"$1"
|
||||||
;;
|
;;
|
||||||
# Common flags
|
# Common flags
|
||||||
--enable-http \
|
--enable-http \
|
||||||
|
|
@ -508,7 +508,7 @@ nginx_update_app_configuration() {
|
||||||
| --disable-https \
|
| --disable-https \
|
||||||
)
|
)
|
||||||
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
||||||
declare "${var_name}=yes"
|
declare "${var_name?}=yes"
|
||||||
;;
|
;;
|
||||||
--server-name \
|
--server-name \
|
||||||
| --http-port \
|
| --http-port \
|
||||||
|
|
@ -516,7 +516,7 @@ nginx_update_app_configuration() {
|
||||||
)
|
)
|
||||||
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
|
||||||
shift
|
shift
|
||||||
declare "${var_name}=${1}"
|
declare "${var_name?}=${1}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue