mirror of
https://github.com/bitnami/containers.git
synced 2026-03-11 16:07:50 +08:00
[bitnami/wordpress-intel] Release 6.0.1-debian-11-r15 (#3312)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -6,6 +6,7 @@ ENV HOME="/" \
|
||||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="6.0.1-debian-11-r15" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/wordpress-intel" \
|
||||
org.opencontainers.image.title="wordpress-intel" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
@@ -20,8 +21,8 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "qatengine" "0.6.
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "php" "8.0.22-1" --checksum 9db7fc9a4c7083406fad1c07b0ff8f27a6236431d904dc0a98a5060df1f8ee15
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wp-cli" "2.6.0-153" --checksum 63b52e992b32b8a7708fa176b05dede536e1c8dbacd4d21fe977bbc1e6b378c4
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "nginx-intel" "0.4.7-152" --checksum bd474b514cce1e457d794634f5dd9411da3c5dda12b486ef5ab139452e07bea6
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "mysql-client" "10.6.8-152" --checksum 3c4757f1064b7a1648886658f05706957cf165c57fa922f4a6ebb757a19034cb
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wordpress" "6.0.1-6" --checksum 97f6c76706f37e69be2fe2aa665447a51837bf99af2d80a3386a73cdd48f6854
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "mysql-client" "10.6.9-0" --checksum cebce7505cdf9a25aa92950d2d0b4f6678905c2c1aa4ade97d69b01b2848a266
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wordpress" "6.0.1-7" --checksum bd74d7e39bedc854d7523bb18aa71c2f89d317bc932cabf6f8dbbc55b01c8da8
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-153" --checksum d3ae0109be24e8bc56f97359b8290b91243454de946dd60bd8520a0896a88449
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
},
|
||||
"mysql-client": {
|
||||
"arch": "amd64",
|
||||
"digest": "3c4757f1064b7a1648886658f05706957cf165c57fa922f4a6ebb757a19034cb",
|
||||
"digest": "cebce7505cdf9a25aa92950d2d0b4f6678905c2c1aa4ade97d69b01b2848a266",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "10.6.8-152"
|
||||
"version": "10.6.9-0"
|
||||
},
|
||||
"nginx-intel": {
|
||||
"arch": "amd64",
|
||||
@@ -43,10 +43,10 @@
|
||||
},
|
||||
"wordpress": {
|
||||
"arch": "amd64",
|
||||
"digest": "97f6c76706f37e69be2fe2aa665447a51837bf99af2d80a3386a73cdd48f6854",
|
||||
"digest": "bd74d7e39bedc854d7523bb18aa71c2f89d317bc932cabf6f8dbbc55b01c8da8",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "6.0.1-6"
|
||||
"version": "6.0.1-7"
|
||||
},
|
||||
"wp-cli": {
|
||||
"arch": "amd64",
|
||||
|
||||
@@ -8,10 +8,10 @@ set -o pipefail
|
||||
# set -o xtrace # Uncomment this line for debugging purposes
|
||||
|
||||
# Only execute init scripts once
|
||||
if [[ ! -f "/bitnami/wordpress-intel/.user_scripts_initialized" && -d "/docker-entrypoint-init.d" ]]; then
|
||||
if [[ ! -f "/bitnami/wordpress/.user_scripts_initialized" && -d "/docker-entrypoint-init.d" ]]; then
|
||||
read -r -a init_scripts <<< "$(find "/docker-entrypoint-init.d" -type f -print0 | sort -z | xargs -0)"
|
||||
if [[ "${#init_scripts[@]}" -gt 0 ]] && [[ ! -f "/bitnami/wordpress-intel/.user_scripts_initialized" ]]; then
|
||||
mkdir -p "/bitnami/wordpress-intel"
|
||||
if [[ "${#init_scripts[@]}" -gt 0 ]] && [[ ! -f "/bitnami/wordpress/.user_scripts_initialized" ]]; then
|
||||
mkdir -p "/bitnami/wordpress"
|
||||
for init_script in "${init_scripts[@]}"; do
|
||||
for init_script_type_handler in /post-init.d/*.sh; do
|
||||
"$init_script_type_handler" "$init_script"
|
||||
@@ -19,5 +19,5 @@ if [[ ! -f "/bitnami/wordpress-intel/.user_scripts_initialized" && -d "/docker-e
|
||||
done
|
||||
fi
|
||||
|
||||
touch "/bitnami/wordpress-intel/.user_scripts_initialized"
|
||||
touch "/bitnami/wordpress/.user_scripts_initialized"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user