10.3.30-debian-10-r18 release

This commit is contained in:
Bitnami Bot
2021-07-16 07:02:42 +00:00
parent b3d491e8f8
commit c847b462ad
3 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ RUN mkdir /docker-entrypoint-initdb.d
COPY rootfs /
RUN /opt/bitnami/scripts/mariadb-galera/postunpack.sh
ENV BITNAMI_APP_NAME="mariadb-galera" \
BITNAMI_IMAGE_VERSION="10.3.30-debian-10-r17" \
BITNAMI_IMAGE_VERSION="10.3.30-debian-10-r18" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/mariadb/bin:/opt/bitnami/mariadb/sbin:$PATH"
EXPOSE 3306 4444 4567 4568

View File

@@ -345,8 +345,8 @@ generate_random_string() {
# md5 hash - string
#########################
generate_md5_hash() {
local -r str="${1:?missing input string}"
echo -n "$str" | md5sum | awk '{print $1}'
local -r str="${1:?missing input string}"
echo -n "$str" | md5sum | awk '{print $1}'
}
########################