From a49ca72f8f426c9b67ebf4ddff507ffd40b8b25a Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Fri, 29 Jul 2022 04:41:45 +0200 Subject: [PATCH] [bitnami/drupal] Release 9.4.4-debian-11-r0 (#1098) Signed-off-by: Bitnami Containers --- bitnami/drupal/9/debian-11/Dockerfile | 4 ++-- .../debian-11/prebuildfs/opt/bitnami/.bitnami_components.json | 4 ++-- .../9/debian-11/rootfs/opt/bitnami/scripts/apache/setup.sh | 4 ++-- bitnami/drupal/README.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bitnami/drupal/9/debian-11/Dockerfile b/bitnami/drupal/9/debian-11/Dockerfile index f0edef60d249..f8eb1a6af455 100644 --- a/bitnami/drupal/9/debian-11/Dockerfile +++ b/bitnami/drupal/9/debian-11/Dockerfile @@ -14,7 +14,7 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "mysql-client" "1 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "libphp" "8.1.8-1" --checksum d7376736b414738dcb1cedbb1c7da5e895e4f78aee0a0e8604b75cd1a0cd8804 RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.3-151" --checksum 9690a34674f152e55c71a55275265314ed1bb29e0be8a75d7880488509f70deb RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-152" --checksum 0c751c7e2ec0bc900a19dbec0306d6294fe744ddfb0fa64197ba1a36040092f0 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "drupal" "9.4.3-0" --checksum cf9ed159d07a50eb07a9813c2e770d0dd6d0ed2249e3aea16e5866a3ec04532f +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "drupal" "9.4.4-0" --checksum adc1f25b8ba3c3d848b366e207dda99a91ce8768cd190529b573d34432fde903 RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami @@ -27,7 +27,7 @@ RUN /opt/bitnami/scripts/drupal/postunpack.sh RUN /opt/bitnami/scripts/mysql-client/postunpack.sh ENV APACHE_HTTPS_PORT_NUMBER="" \ APACHE_HTTP_PORT_NUMBER="" \ - APP_VERSION="9.4.3" \ + APP_VERSION="9.4.4" \ BITNAMI_APP_NAME="drupal" \ PATH="/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/mysql/bin:/opt/bitnami/common/bin:/opt/bitnami/drupal/vendor/bin:$PATH" diff --git a/bitnami/drupal/9/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/drupal/9/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 8959d2695f86..13ec3944f7f3 100644 --- a/bitnami/drupal/9/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/drupal/9/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,10 +8,10 @@ }, "drupal": { "arch": "amd64", - "digest": "cf9ed159d07a50eb07a9813c2e770d0dd6d0ed2249e3aea16e5866a3ec04532f", + "digest": "adc1f25b8ba3c3d848b366e207dda99a91ce8768cd190529b573d34432fde903", "distro": "debian-11", "type": "NAMI", - "version": "9.4.3-0" + "version": "9.4.4-0" }, "gosu": { "arch": "amd64", diff --git a/bitnami/drupal/9/debian-11/rootfs/opt/bitnami/scripts/apache/setup.sh b/bitnami/drupal/9/debian-11/rootfs/opt/bitnami/scripts/apache/setup.sh index 3d7279aad46a..6fc139a94f2f 100755 --- a/bitnami/drupal/9/debian-11/rootfs/opt/bitnami/scripts/apache/setup.sh +++ b/bitnami/drupal/9/debian-11/rootfs/opt/bitnami/scripts/apache/setup.sh @@ -27,7 +27,7 @@ fi # Mount certificate files if ! is_dir_empty "${APACHE_BASE_DIR}/certs"; then - warn "The directory '${APACHE_BASE_DIR}/certs' was externally mounted. This is a legacy configuration and will be deprecated soon. Please mount certificate files at '/certs' instead. Find an example at: https://github.com/bitnami/bitnami-docker-apache#using-custom-ssl-certificates" + warn "The directory '${APACHE_BASE_DIR}/certs' was externally mounted. This is a legacy configuration and will be deprecated soon. Please mount certificate files at '/certs' instead. Find an example at: https://github.com/bitnami/containers/tree/main/bitnami/apache#using-custom-ssl-certificates" warn "Restoring certificates at '${APACHE_BASE_DIR}/certs' to '${APACHE_CONF_DIR}/bitnami/certs'" rm -rf "${APACHE_CONF_DIR}/bitnami/certs" ln -sf "${APACHE_BASE_DIR}/certs" "${APACHE_CONF_DIR}/bitnami/certs" @@ -46,7 +46,7 @@ fi # Restore persisted configuration files (deprecated) if ! is_dir_empty "/bitnami/apache/conf"; then - warn "The directory '/bitnami/apache/conf' was externally mounted. This is a legacy configuration and will be deprecated soon. Please mount certificate files at '${APACHE_CONF_DIR}' instead. Find an example at: https://github.com/bitnami/bitnami-docker-apache#full-configuration" + warn "The directory '/bitnami/apache/conf' was externally mounted. This is a legacy configuration and will be deprecated soon. Please mount certificate files at '${APACHE_CONF_DIR}' instead. Find an example at: https://github.com/bitnami/containers/tree/main/bitnami/apache#full-configuration" warn "Restoring configuration at '/bitnami/apache/conf' to '${APACHE_CONF_DIR}'" rm -rf "$APACHE_CONF_DIR" ln -sf "/bitnami/apache/conf" "$APACHE_CONF_DIR" diff --git a/bitnami/drupal/README.md b/bitnami/drupal/README.md index 4e8f460cce7d..685acc1f5261 100644 --- a/bitnami/drupal/README.md +++ b/bitnami/drupal/README.md @@ -41,7 +41,7 @@ Bitnami containers can be used with [Kubeapps](https://kubeapps.dev/) for deploy 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/). -* [`9`, `9-debian-11`, `9.4.3`, `9.4.3-debian-11-r2`, `latest` (9/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/drupal/9/debian-11/Dockerfile) +* [`9`, `9-debian-11`, `9.4.4`, `9.4.4-debian-11-r0`, `latest` (9/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/drupal/9/debian-11/Dockerfile) * [`7`, `7-debian-11`, `7.91.0`, `7.91.0-debian-11-r2` (7/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/drupal/7/debian-11/Dockerfile) Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).