[bitnami/wordpress-nginx] Release 6.9.0-debian-12-r0 (#88758)
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
parent
a81bf447ae
commit
aef9dbec6d
|
|
@ -7,13 +7,13 @@ 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-11-24T16:45:55Z" \
|
||||
org.opencontainers.image.created="2025-12-03T10:24:08Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/wordpress-nginx/README.md" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/wordpress-nginx" \
|
||||
org.opencontainers.image.title="wordpress-nginx" \
|
||||
org.opencontainers.image.vendor="Broadcom, Inc." \
|
||||
org.opencontainers.image.version="6.8.3"
|
||||
org.opencontainers.image.version="6.9.0"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
|
|
@ -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-159-linux-${OS_ARCH}-debian-12" \
|
||||
"php-8.4.15-4-linux-${OS_ARCH}-debian-12" \
|
||||
"nginx-1.29.3-0-linux-${OS_ARCH}-debian-12" \
|
||||
"render-template-1.0.9-160-linux-${OS_ARCH}-debian-12" \
|
||||
"php-8.4.15-5-linux-${OS_ARCH}-debian-12" \
|
||||
"nginx-1.29.3-2-linux-${OS_ARCH}-debian-12" \
|
||||
"mysql-client-12.1.2-0-linux-${OS_ARCH}-debian-12" \
|
||||
"wordpress-nginx-6.8.3-0-linux-${OS_ARCH}-debian-12" \
|
||||
"wordpress-nginx-6.9.0-0-linux-${OS_ARCH}-debian-12" \
|
||||
) ; \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
|
@ -55,9 +55,9 @@ RUN /opt/bitnami/scripts/nginx/postunpack.sh
|
|||
RUN /opt/bitnami/scripts/php/postunpack.sh
|
||||
RUN /opt/bitnami/scripts/nginx-php-fpm/postunpack.sh
|
||||
RUN /opt/bitnami/scripts/wordpress/postunpack.sh
|
||||
ENV APP_VERSION="6.8.3" \
|
||||
ENV APP_VERSION="6.9.0" \
|
||||
BITNAMI_APP_NAME="wordpress-nginx" \
|
||||
IMAGE_REVISION="5" \
|
||||
IMAGE_REVISION="0" \
|
||||
NGINX_HTTPS_PORT_NUMBER="" \
|
||||
NGINX_HTTP_PORT_NUMBER="" \
|
||||
PATH="/opt/bitnami/wp-cli/bin:/opt/bitnami/common/bin:/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/nginx/sbin:/opt/bitnami/mysql/bin:$PATH"
|
||||
|
|
|
|||
|
|
@ -93,3 +93,15 @@ touch /.rnd && chmod g+rw /.rnd
|
|||
# (this is to avoid breaking when entrypoint is being overridden)
|
||||
cp -r "${NGINX_CONF_DIR}"/* "$NGINX_DEFAULT_CONF_DIR"
|
||||
|
||||
# Create symlinks to the standard Nginx directories and binary
|
||||
ln -sf /opt/bitnami/nginx/conf /etc/nginx
|
||||
ensure_dir_exists /usr/share/nginx
|
||||
ln -sf /app /usr/share/nginx/html
|
||||
ln -sf /opt/bitnami/nginx/logs /var/log/nginx
|
||||
ln -sf /opt/bitnami/nginx/tmp /var/run/nginx
|
||||
ensure_dir_exists /opt/bitnami/nginx/tmp/cache
|
||||
ln -sf /opt/bitnami/nginx/tmp/cache /var/cache/nginx
|
||||
ensure_dir_exists /usr/sbin
|
||||
ln -sf /opt/bitnami/nginx/sbin/nginx /usr/sbin/nginx
|
||||
ensure_dir_exists /usr/lib/nginx
|
||||
ln -sf /opt/bitnami/nginx/modules /usr/lib/nginx/modules
|
||||
|
|
|
|||
Loading…
Reference in New Issue