[bitnami/wordpress-nginx] Release 6.2.1-debian-11-r0 (#34258)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
6a4bcbb3e1
commit
49ea9657f1
|
|
@ -3,13 +3,13 @@ FROM docker.io/bitnami/minideb:bullseye
|
|||
ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2023-05-14T22:28:41Z" \
|
||||
org.opencontainers.image.created="2023-05-17T07:47:31Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="6.2.0-debian-11-r23" \
|
||||
org.opencontainers.image.ref.name="6.2.1-debian-11-r0" \
|
||||
org.opencontainers.image.title="wordpress-nginx" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="6.2.0"
|
||||
org.opencontainers.image.version="6.2.1"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
|
|
@ -25,7 +25,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
|||
"php-8.1.19-1-linux-${OS_ARCH}-debian-11" \
|
||||
"nginx-1.23.4-3-linux-${OS_ARCH}-debian-11" \
|
||||
"mysql-client-10.11.3-0-linux-${OS_ARCH}-debian-11" \
|
||||
"wordpress-6.2.0-14-linux-${OS_ARCH}-debian-11" \
|
||||
"wordpress-6.2.1-0-linux-${OS_ARCH}-debian-11" \
|
||||
"render-template-1.0.5-5-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
|
|
@ -48,7 +48,7 @@ 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.2.0" \
|
||||
ENV APP_VERSION="6.2.1" \
|
||||
BITNAMI_APP_NAME="wordpress-nginx" \
|
||||
NGINX_HTTPS_PORT_NUMBER="" \
|
||||
NGINX_HTTP_PORT_NUMBER="" \
|
||||
|
|
|
|||
|
|
@ -27,6 +27,6 @@
|
|||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "6.2.0-14"
|
||||
"version": "6.2.1-0"
|
||||
}
|
||||
}
|
||||
|
|
@ -643,8 +643,8 @@ nginx_generate_sample_certs() {
|
|||
local certs_dir="${NGINX_CONF_DIR}/bitnami/certs"
|
||||
|
||||
if ! is_boolean_yes "$NGINX_SKIP_SAMPLE_CERTS" && [[ ! -f "${certs_dir}/server.crt" ]]; then
|
||||
ensure_dir_exists "$certs_dir"
|
||||
if is_file_writable "${certs_dir}/server.crt"; then
|
||||
# Check certificates directory exists and is writable
|
||||
if [[ -d "$certs_dir" && -w "$certs_dir" ]]; then
|
||||
SSL_KEY_FILE="${certs_dir}/server.key"
|
||||
SSL_CERT_FILE="${certs_dir}/server.crt"
|
||||
SSL_CSR_FILE="${certs_dir}/server.csr"
|
||||
|
|
@ -656,7 +656,7 @@ nginx_generate_sample_certs() {
|
|||
openssl x509 -req -sha256 -in "$SSL_CSR_FILE" -signkey "$SSL_KEY_FILE" -out "$SSL_CERT_FILE" -days 1825 -extfile <(echo -n "$SSL_EXT")
|
||||
rm -f "$SSL_CSR_FILE"
|
||||
else
|
||||
warn "The certificates directories '${certs_dir}' is not writable, skipping sample HTTPS certificates generation"
|
||||
warn "The certificates directories '${certs_dir}' does not exist or is not writable, skipping sample HTTPS certificates generation"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
rolling-tags:
|
||||
- "6"
|
||||
- 6-debian-11
|
||||
- 6.2.0
|
||||
- 6.2.1
|
||||
- latest
|
||||
|
|
|
|||
Loading…
Reference in New Issue