5.9.2-debian-10-r15 release

This commit is contained in:
Bitnami Bot
2022-03-25 22:04:11 +00:00
parent 81ca3e5ac6
commit 48be9b5896
9 changed files with 18 additions and 13 deletions

View File

@@ -23,8 +23,8 @@ RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
RUN /opt/bitnami/scripts/php/postunpack.sh
RUN /opt/bitnami/scripts/apache/postunpack.sh
RUN /opt/bitnami/scripts/php/postunpack.sh
RUN /opt/bitnami/scripts/apache-modphp/postunpack.sh
RUN /opt/bitnami/scripts/wordpress/postunpack.sh
RUN /opt/bitnami/scripts/wp-cli/postunpack.sh
@@ -32,7 +32,7 @@ ENV APACHE_HTTPS_PORT_NUMBER="" \
APACHE_HTTP_PORT_NUMBER="" \
APP_VERSION="5.9.2" \
BITNAMI_APP_NAME="wordpress" \
BITNAMI_IMAGE_VERSION="5.9.2-debian-10-r14" \
BITNAMI_IMAGE_VERSION="5.9.2-debian-10-r15" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/wp-cli/bin:/opt/bitnami/mysql/bin:$PATH"
EXPOSE 8080 8443

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

@@ -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

@@ -400,7 +400,7 @@ ensure_apache_app_configuration_exists() {
| --server-aliases)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
read -r -a "$var_name" <<< "$1"
read -r -a "${var_name?}" <<< "$1"
;;
--disable \
| --disable-http \
@@ -467,7 +467,7 @@ ensure_apache_app_configuration_exists() {
allow_override="None"
htaccess_include="Include \"${APACHE_HTACCESS_DIR}/${app}-htaccess.conf\""
else
allow_override="$allow_override"
# allow_override is already set to the expected value
htaccess_include=""
fi
# ACL configuration
@@ -609,7 +609,7 @@ ensure_apache_prefix_configuration_exists() {
allow_override="None"
htaccess_include="Include \"${APACHE_HTACCESS_DIR}/${app}-htaccess.conf\""
else
allow_override="$allow_override"
# allow_override is already set to the expected value
htaccess_include=""
fi
# ACL configuration
@@ -694,14 +694,18 @@ apache_update_app_configuration() {
| --server-aliases)
var_name="$(echo "$1" | sed -e "s/^--//" -e "s/-/_/g")"
shift
read -r -a "$var_name" <<< "$1"
read -r -a "${var_name?}" <<< "$1"
;;
# Common flags
--server-name \
| --enable-http \
--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 \
)

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

@@ -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

@@ -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

@@ -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

@@ -43,7 +43,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/tutorials/understand-rolling-tags-containers/).
- [`5`, `5-debian-10`, `5.9.2`, `5.9.2-debian-10-r14`, `latest` (5/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wordpress/blob/5.9.2-debian-10-r14/5/debian-10/Dockerfile)
- [`5`, `5-debian-10`, `5.9.2`, `5.9.2-debian-10-r15`, `latest` (5/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wordpress/blob/5.9.2-debian-10-r15/5/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/wordpress GitHub repo](https://github.com/bitnami/bitnami-docker-wordpress).