2.4.2-debian-10-r121 release

This commit is contained in:
Bitnami Bot
2021-07-26 10:15:20 +00:00
parent 27b994323e
commit 46b39c586e
7 changed files with 17 additions and 10 deletions

View File

@@ -9,7 +9,7 @@ ENV HOME="/" \
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages acl ca-certificates cron curl gzip libaudit1 libbsd0 libbz2-1.0 libc6 libcap-ng0 libcom-err2 libcurl4 libexpat1 libffi6 libfftw3-double3 libfontconfig1 libfreetype6 libgcc1 libgcrypt20 libglib2.0-0 libgmp10 libgnutls30 libgomp1 libgpg-error0 libgssapi-krb5-2 libhogweed4 libicu63 libidn2-0 libjemalloc2 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 libldap-2.4-2 liblqr-1-0 libltdl7 liblzma5 libmagickcore-6.q16-6 libmagickwand-6.q16-6 libmcrypt4 libmemcached11 libmemcachedutil2 libncurses6 libnettle6 libnghttp2-14 libonig5 libp11-kit0 libpam0g libpcre3 libpng16-16 libpq5 libpsl5 libreadline7 librtmp1 libsasl2-2 libsodium23 libsqlite3-0 libssh2-1 libssl1.1 libstdc++6 libsybdb5 libtasn1-6 libtidy5deb1 libtinfo6 libunistring2 libuuid1 libwebp6 libx11-6 libxau6 libxcb1 libxdmcp6 libxext6 libxml2 libxslt1.1 libzip4 procps tar zlib1g
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "php" "7.4.21-2" --checksum 78bf9a61ec1162785f73ea19d8989cec79c5b06e7e00135b2145c6627d74ec72
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "php" "7.4.21-5" --checksum 1fbdd96916042bb8362215e48aec7ad4dab897ba224c385474eb2f98d43f023a
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "apache" "2.4.48-1" --checksum 0296bc7dd5f621eba6f948433a6c7fc04a45876f42f6395cea5888b707f1ad11
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wait-for-port" "1.0.0-3" --checksum 7521d9a4f9e4e182bf32977e234026caa7b03759799868335bccb1edd8f8fd12
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "mysql-client" "10.3.30-0" --checksum 47107f86621bb184307e47bbb15244d076575f0e0f7d339f198ef312b6f3f285
@@ -21,8 +21,8 @@ RUN chmod g+rwX /opt/bitnami
RUN sed -i -e '/pam_loginuid.so/ s/^#*/#/' /etc/pam.d/cron
COPY rootfs /
RUN /opt/bitnami/scripts/apache/postunpack.sh
RUN /opt/bitnami/scripts/php/postunpack.sh
RUN /opt/bitnami/scripts/apache/postunpack.sh
RUN /opt/bitnami/scripts/apache-modphp/postunpack.sh
RUN /opt/bitnami/scripts/magento/postunpack.sh
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
@@ -31,7 +31,7 @@ ENV ALLOW_EMPTY_PASSWORD="no" \
APACHE_HTTPS_PORT_NUMBER="" \
APACHE_HTTP_PORT_NUMBER="" \
BITNAMI_APP_NAME="magento" \
BITNAMI_IMAGE_VERSION="2.4.2-debian-10-r120" \
BITNAMI_IMAGE_VERSION="2.4.2-debian-10-r121" \
MARIADB_HOST="mariadb" \
MARIADB_PORT_NUMBER="3306" \
MARIADB_ROOT_PASSWORD="" \

View File

@@ -28,7 +28,7 @@ services:
- mariadb
- elasticsearch
elasticsearch:
image: docker.io/bitnami/elasticsearch:6
image: docker.io/bitnami/elasticsearch:7
volumes:
- 'elasticsearch_data:/bitnami/elasticsearch/data'
volumes:

View File

@@ -36,10 +36,10 @@
},
"php": {
"arch": "amd64",
"digest": "78bf9a61ec1162785f73ea19d8989cec79c5b06e7e00135b2145c6627d74ec72",
"digest": "1fbdd96916042bb8362215e48aec7ad4dab897ba224c385474eb2f98d43f023a",
"distro": "debian-10",
"type": "NAMI",
"version": "7.4.21-2"
"version": "7.4.21-5"
},
"render-template": {
"arch": "amd64",

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}'
}
########################

View File

@@ -339,6 +339,13 @@ magento_initialize() {
fi
magento_wait_for_db_connection "$db_host" "$db_port" "$db_name" "$db_user" "$db_pass"
if [[ "$MAGENTO_SEARCH_ENGINE" =~ ^elasticsearch ]]; then
es_host="$MAGENTO_ELASTICSEARCH_HOST"
es_port="$MAGENTO_ELASTICSEARCH_PORT_NUMBER"
info "Trying to connect to Elasticsearch"
magento_wait_for_es_connection "$es_host" "$es_port"
fi
# Perform database schema upgrade
info "Upgrading database schema"
magento_execute setup:upgrade

View File

@@ -41,7 +41,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/).
* [`2`, `2-debian-10`, `2.4.2`, `2.4.2-debian-10-r120`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-magento/blob/2.4.2-debian-10-r120/2/debian-10/Dockerfile)
* [`2`, `2-debian-10`, `2.4.2`, `2.4.2-debian-10-r121`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-magento/blob/2.4.2-debian-10-r121/2/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/magento GitHub repo](https://github.com/bitnami/bitnami-docker-magento).

View File

@@ -28,7 +28,7 @@ services:
- mariadb
- elasticsearch
elasticsearch:
image: docker.io/bitnami/elasticsearch:7.13.3-debian-10-r0
image: docker.io/bitnami/elasticsearch:7
volumes:
- 'elasticsearch_data:/bitnami/elasticsearch/data'
volumes: