mirror of
https://github.com/bitnami/containers.git
synced 2026-02-16 10:27:16 +08:00
[bitnami/wordpress-nginx] Release 6.2.0-debian-11-r0 (#28683)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -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-03-28T19:14:03Z" \
|
||||
org.opencontainers.image.created="2023-03-30T21:12:11Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="6.1.1-debian-11-r66" \
|
||||
org.opencontainers.image.ref.name="6.2.0-debian-11-r0" \
|
||||
org.opencontainers.image.title="wordpress-nginx" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="6.1.1"
|
||||
org.opencontainers.image.version="6.2.0"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
@@ -23,11 +23,11 @@ RUN install_packages acl ca-certificates curl less libaudit1 libbrotli1 libbsd0
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
COMPONENTS=( \
|
||||
"php-8.1.17-3-linux-${OS_ARCH}-debian-11" \
|
||||
"nginx-1.23.4-0-linux-${OS_ARCH}-debian-11" \
|
||||
"mysql-client-10.6.12-2-linux-${OS_ARCH}-debian-11" \
|
||||
"wordpress-6.1.1-45-linux-${OS_ARCH}-debian-11" \
|
||||
"render-template-1.0.5-2-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.16.0-3-linux-${OS_ARCH}-debian-11" \
|
||||
"nginx-1.23.4-1-linux-${OS_ARCH}-debian-11" \
|
||||
"mysql-client-10.6.12-3-linux-${OS_ARCH}-debian-11" \
|
||||
"wordpress-6.2.0-0-linux-${OS_ARCH}-debian-11" \
|
||||
"render-template-1.0.5-3-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.16.0-4-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
@@ -49,7 +49,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.1.1" \
|
||||
ENV APP_VERSION="6.2.0" \
|
||||
BITNAMI_APP_NAME="wordpress-nginx" \
|
||||
NGINX_HTTPS_PORT_NUMBER="" \
|
||||
NGINX_HTTP_PORT_NUMBER="" \
|
||||
|
||||
@@ -3,19 +3,19 @@
|
||||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.16.0-3"
|
||||
"version": "1.16.0-4"
|
||||
},
|
||||
"mysql-client": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "10.6.12-2"
|
||||
"version": "10.6.12-3"
|
||||
},
|
||||
"nginx": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.23.4-0"
|
||||
"version": "1.23.4-1"
|
||||
},
|
||||
"php": {
|
||||
"arch": "amd64",
|
||||
@@ -27,12 +27,12 @@
|
||||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.0.5-2"
|
||||
"version": "1.0.5-3"
|
||||
},
|
||||
"wordpress": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "6.1.1-45"
|
||||
"version": "6.2.0-0"
|
||||
}
|
||||
}
|
||||
@@ -279,7 +279,7 @@ remove_logrotate_conf() {
|
||||
# Flags:
|
||||
# --custom-service-content - Custom content to add to the [service] block
|
||||
# --environment - Environment variable to define (multiple --environment options may be passed)
|
||||
# --environment-file - Text file with environment variables
|
||||
# --environment-file - Text file with environment variables (multiple --environment-file options may be passed)
|
||||
# --exec-start - Start command (required)
|
||||
# --exec-start-pre - Pre-start command (optional)
|
||||
# --exec-start-post - Post-start command (optional)
|
||||
@@ -330,7 +330,6 @@ generate_systemd_conf() {
|
||||
| --type \
|
||||
| --user \
|
||||
| --group \
|
||||
| --environment-file \
|
||||
| --exec-start \
|
||||
| --exec-stop \
|
||||
| --exec-reload \
|
||||
@@ -368,6 +367,12 @@ generate_systemd_conf() {
|
||||
[[ -n "$environment" ]] && environment+=$'\n'
|
||||
environment+="Environment=${1:?"--environment value is missing"}"
|
||||
;;
|
||||
--environment-file)
|
||||
shift
|
||||
# It is possible to add multiple environment-file lines
|
||||
[[ -n "$environment_file" ]] && environment_file+=$'\n'
|
||||
environment_file+="EnvironmentFile=${1:?"--environment-file value is missing"}"
|
||||
;;
|
||||
*)
|
||||
echo "Invalid command line flag ${1}" >&2
|
||||
return 1
|
||||
@@ -435,7 +440,8 @@ EOF
|
||||
cat >> "$service_file" <<< "$environment"
|
||||
fi
|
||||
if [[ -n "$environment_file" ]]; then
|
||||
cat >> "$service_file" <<< "EnvironmentFile=${environment_file}"
|
||||
# This variable may contain multiple EnvironmentFile= directives
|
||||
cat >> "$service_file" <<< "$environment_file"
|
||||
fi
|
||||
# Logging
|
||||
if [[ -n "$standard_output" ]]; then
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
rolling-tags:
|
||||
- "6"
|
||||
- 6-debian-11
|
||||
- 6.1.1
|
||||
- 6.2.0
|
||||
- latest
|
||||
|
||||
Reference in New Issue
Block a user