[bitnami/wordpress] Release 6.8.3-debian-12-r4 (#88470)
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
parent
c956b49a90
commit
2b6cc1a85f
|
|
@ -7,7 +7,7 @@ ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith"
|
|||
ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
||||
org.opencontainers.image.created="2025-10-21T08:40:07Z" \
|
||||
org.opencontainers.image.created="2025-11-20T09:02:33Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/wordpress/README.md" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/wordpress" \
|
||||
|
|
@ -28,11 +28,11 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
|
|||
DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; \
|
||||
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
|
||||
COMPONENTS=( \
|
||||
"render-template-1.0.9-158-linux-${OS_ARCH}-debian-12" \
|
||||
"php-8.4.13-6-linux-${OS_ARCH}-debian-12" \
|
||||
"render-template-1.0.9-159-linux-${OS_ARCH}-debian-12" \
|
||||
"php-8.4.14-7-linux-${OS_ARCH}-debian-12" \
|
||||
"apache-2.4.65-1-linux-${OS_ARCH}-debian-12" \
|
||||
"mysql-client-12.0.2-0-linux-${OS_ARCH}-debian-12" \
|
||||
"libphp-8.4.13-0-linux-${OS_ARCH}-debian-12" \
|
||||
"libphp-8.4.14-0-linux-${OS_ARCH}-debian-12" \
|
||||
"wordpress-6.8.3-0-linux-${OS_ARCH}-debian-12" \
|
||||
) ; \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
|
|
@ -60,7 +60,7 @@ ENV APACHE_HTTPS_PORT_NUMBER="" \
|
|||
APACHE_HTTP_PORT_NUMBER="" \
|
||||
APP_VERSION="6.8.3" \
|
||||
BITNAMI_APP_NAME="wordpress" \
|
||||
IMAGE_REVISION="3" \
|
||||
IMAGE_REVISION="4" \
|
||||
PATH="/opt/bitnami/wp-cli/bin:/opt/bitnami/common/bin:/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/mysql/bin:$PATH"
|
||||
|
||||
EXPOSE 8080 8443
|
||||
|
|
|
|||
|
|
@ -19,13 +19,7 @@ set -o pipefail
|
|||
|
||||
# Enable required Apache modules
|
||||
apache_enable_module "mpm_prefork_module"
|
||||
php_version="$("${PHP_BIN_DIR}/php" -v | grep ^PHP | cut -d' ' -f2))"
|
||||
php_major_version="$(get_sematic_version "$php_version" 1)"
|
||||
if [[ "$php_major_version" -eq "8" ]]; then
|
||||
apache_enable_module "php_module" "modules/libphp.so"
|
||||
else
|
||||
apache_enable_module "php${php_major_version}_module" "modules/libphp${php_major_version}.so"
|
||||
fi
|
||||
apache_enable_module "php_module" "modules/libphp.so"
|
||||
|
||||
# Disable incompatible Apache modules
|
||||
apache_disable_module "mpm_event_module"
|
||||
|
|
|
|||
|
|
@ -52,10 +52,7 @@ php_conf_set post_max_size "$PHP_DEFAULT_POST_MAX_SIZE"
|
|||
# https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions
|
||||
php_conf_set extension "imagick"
|
||||
# Memcached extension is required for W3 Total Cache plugin
|
||||
# Photon does not provide a package for the libmemcached library, so it can't support the extension
|
||||
if [[ "$(get_os_metadata --id)" != "photon" ]]; then
|
||||
php_conf_set extension "memcached"
|
||||
fi
|
||||
php_conf_set extension "memcached"
|
||||
|
||||
# Enable default web server configuration for WordPress
|
||||
info "Creating default web server configuration for WordPress"
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
> WordPress is the world's most popular blogging and content management platform. Powerful yet simple, everyone from students to global corporations use it to build beautiful, functional websites.
|
||||
|
||||
[Overview of WordPress](https://wordpress.org)
|
||||
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
|
||||
|
||||
## TL;DR
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue