3.10.6-debian-10-r35 release

This commit is contained in:
Bitnami Bot
2022-03-26 07:21:36 +00:00
parent 87ba530e39
commit 91f520d106
8 changed files with 16 additions and 12 deletions

View File

@@ -30,7 +30,7 @@ ENV APACHE_HTTPS_PORT_NUMBER="" \
APACHE_HTTP_PORT_NUMBER="" \
APP_VERSION="3.10.6" \
BITNAMI_APP_NAME="joomla" \
BITNAMI_IMAGE_VERSION="3.10.6-debian-10-r34" \
BITNAMI_IMAGE_VERSION="3.10.6-debian-10-r35" \
PATH="/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/mysql/bin:/opt/bitnami/common/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

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

@@ -46,7 +46,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`4`, `4-debian-10`, `4.1.0`, `4.1.0-debian-10-r34`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-joomla/blob/4.1.0-debian-10-r34/4/debian-10/Dockerfile)
* [`3`, `3-debian-10`, `3.10.6`, `3.10.6-debian-10-r34` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-joomla/blob/3.10.6-debian-10-r34/3/debian-10/Dockerfile)
* [`3`, `3-debian-10`, `3.10.6`, `3.10.6-debian-10-r35` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-joomla/blob/3.10.6-debian-10-r35/3/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/joomla GitHub repo](https://github.com/bitnami/bitnami-docker-joomla).