10.5.4-debian-10-r12 release
This commit is contained in:
parent
28bc30f5ea
commit
66ad781efd
|
|
@ -19,7 +19,7 @@ RUN mkdir /docker-entrypoint-initdb.d
|
||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /opt/bitnami/scripts/mariadb/postunpack.sh
|
RUN /opt/bitnami/scripts/mariadb/postunpack.sh
|
||||||
ENV BITNAMI_APP_NAME="mariadb" \
|
ENV BITNAMI_APP_NAME="mariadb" \
|
||||||
BITNAMI_IMAGE_VERSION="10.5.4-debian-10-r11" \
|
BITNAMI_IMAGE_VERSION="10.5.4-debian-10-r12" \
|
||||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/mariadb/bin:/opt/bitnami/mariadb/sbin:$PATH"
|
PATH="/opt/bitnami/common/bin:/opt/bitnami/mariadb/bin:/opt/bitnami/mariadb/sbin:$PATH"
|
||||||
|
|
||||||
EXPOSE 3306
|
EXPOSE 3306
|
||||||
|
|
|
||||||
|
|
@ -276,6 +276,48 @@ ensure_web_server_prefix_configuration_exists() {
|
||||||
"ensure_$(web_server_type)_prefix_configuration_exists" "$app" "${args[@]}"
|
"ensure_$(web_server_type)_prefix_configuration_exists" "$app" "${args[@]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Ensure a web server application configuration is updated with the runtime configuration (i.e. ports)
|
||||||
|
# It serves as a wrapper for the specific web server function
|
||||||
|
# Globals:
|
||||||
|
# *
|
||||||
|
# Arguments:
|
||||||
|
# $1 - App name
|
||||||
|
# Flags:
|
||||||
|
# --hosts - Hosts to enable
|
||||||
|
# --enable-https - Update HTTPS app configuration
|
||||||
|
# --http-port - HTTP port number
|
||||||
|
# --https-port - HTTPS port number
|
||||||
|
# Returns:
|
||||||
|
# true if the configuration was updated, false otherwise
|
||||||
|
########################
|
||||||
|
web_server_update_app_configuration() {
|
||||||
|
local app="${1:?missing app}"
|
||||||
|
local -a args=()
|
||||||
|
# Validate arguments
|
||||||
|
shift
|
||||||
|
while [[ "$#" -gt 0 ]]; do
|
||||||
|
case "$1" in
|
||||||
|
# Common flags
|
||||||
|
--hosts \
|
||||||
|
| --enable-https \
|
||||||
|
| --http-port \
|
||||||
|
| --https-port \
|
||||||
|
)
|
||||||
|
args+=("$1" "$2")
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "Invalid command line flag $1" >&2
|
||||||
|
return 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
"$(web_server_type)_update_app_configuration" "$app" "${args[@]}"
|
||||||
|
}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Enable loading page, which shows users that the initialization process is not yet completed
|
# Enable loading page, which shows users that the initialization process is not yet completed
|
||||||
# Globals:
|
# Globals:
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,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/).
|
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/).
|
||||||
|
|
||||||
|
|
||||||
* [`10.5-debian-10`, `10.5.4-debian-10-r11`, `10.5`, `10.5.4`, `latest` (10.5/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mariadb/blob/10.5.4-debian-10-r11/10.5/debian-10/Dockerfile)
|
* [`10.5-debian-10`, `10.5.4-debian-10-r12`, `10.5`, `10.5.4`, `latest` (10.5/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mariadb/blob/10.5.4-debian-10-r12/10.5/debian-10/Dockerfile)
|
||||||
* [`10.4-debian-10`, `10.4.13-debian-10-r54`, `10.4`, `10.4.13` (10.4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mariadb/blob/10.4.13-debian-10-r54/10.4/debian-10/Dockerfile)
|
* [`10.4-debian-10`, `10.4.13-debian-10-r54`, `10.4`, `10.4.13` (10.4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mariadb/blob/10.4.13-debian-10-r54/10.4/debian-10/Dockerfile)
|
||||||
* [`10.3-debian-10`, `10.3.23-debian-10-r55`, `10.3`, `10.3.23` (10.3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mariadb/blob/10.3.23-debian-10-r55/10.3/debian-10/Dockerfile)
|
* [`10.3-debian-10`, `10.3.23-debian-10-r55`, `10.3`, `10.3.23` (10.3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mariadb/blob/10.3.23-debian-10-r55/10.3/debian-10/Dockerfile)
|
||||||
* [`10.2-debian-10`, `10.2.32-debian-10-r56`, `10.2`, `10.2.32` (10.2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mariadb/blob/10.2.32-debian-10-r56/10.2/debian-10/Dockerfile)
|
* [`10.2-debian-10`, `10.2.32-debian-10-r56`, `10.2`, `10.2.32` (10.2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mariadb/blob/10.2.32-debian-10-r56/10.2/debian-10/Dockerfile)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue