mirror of
https://github.com/bitnami/containers.git
synced 2026-03-15 14:58:17 +08:00
5.8.0-debian-10-r31 release
This commit is contained in:
@@ -30,7 +30,7 @@ ENV ALLOW_EMPTY_PASSWORD="no" \
|
|||||||
APACHE_HTTPS_PORT_NUMBER="" \
|
APACHE_HTTPS_PORT_NUMBER="" \
|
||||||
APACHE_HTTP_PORT_NUMBER="" \
|
APACHE_HTTP_PORT_NUMBER="" \
|
||||||
BITNAMI_APP_NAME="wordpress" \
|
BITNAMI_APP_NAME="wordpress" \
|
||||||
BITNAMI_IMAGE_VERSION="5.8.0-debian-10-r30" \
|
BITNAMI_IMAGE_VERSION="5.8.0-debian-10-r31" \
|
||||||
MARIADB_HOST="mariadb" \
|
MARIADB_HOST="mariadb" \
|
||||||
MARIADB_PORT_NUMBER="3306" \
|
MARIADB_PORT_NUMBER="3306" \
|
||||||
MARIADB_ROOT_PASSWORD="" \
|
MARIADB_ROOT_PASSWORD="" \
|
||||||
|
|||||||
@@ -137,6 +137,19 @@ generate_cron_conf() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Remove a cron configuration file for a given service
|
||||||
|
# Arguments:
|
||||||
|
# $1 - Service name
|
||||||
|
# Returns:
|
||||||
|
# None
|
||||||
|
#########################
|
||||||
|
remove_cron_conf() {
|
||||||
|
local service_name="${1:?service name is missing}"
|
||||||
|
local cron_conf_dir="/etc/monit/conf.d"
|
||||||
|
rm -f "${cron_conf_dir}/${service_name}"
|
||||||
|
}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Generate a monit configuration file for a given service
|
# Generate a monit configuration file for a given service
|
||||||
# Arguments:
|
# Arguments:
|
||||||
@@ -183,6 +196,19 @@ check process ${service_name}
|
|||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Remove a monit configuration file for a given service
|
||||||
|
# Arguments:
|
||||||
|
# $1 - Service name
|
||||||
|
# Returns:
|
||||||
|
# None
|
||||||
|
#########################
|
||||||
|
remove_monit_conf() {
|
||||||
|
local service_name="${1:?service name is missing}"
|
||||||
|
local monit_conf_dir="/etc/monit/conf.d"
|
||||||
|
rm -f "${monit_conf_dir}/${service_name}.conf"
|
||||||
|
}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Generate a logrotate configuration file
|
# Generate a logrotate configuration file
|
||||||
# Arguments:
|
# Arguments:
|
||||||
@@ -233,3 +259,16 @@ $(indent "$extra" 2)
|
|||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Remove a logrotate configuration file
|
||||||
|
# Arguments:
|
||||||
|
# $1 - Service name
|
||||||
|
# Returns:
|
||||||
|
# None
|
||||||
|
#########################
|
||||||
|
remove_logrotate_conf() {
|
||||||
|
local service_name="${1:?service name is missing}"
|
||||||
|
local logrotate_conf_dir="/etc/logrotate.d"
|
||||||
|
rm -f "${logrotate_conf_dir}/${service_name}"
|
||||||
|
}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||||
|
|
||||||
|
|
||||||
- [`5`, `5-debian-10`, `5.8.0`, `5.8.0-debian-10-r30`, `latest` (5/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wordpress/blob/5.8.0-debian-10-r30/5/debian-10/Dockerfile)
|
- [`5`, `5-debian-10`, `5.8.0`, `5.8.0-debian-10-r31`, `latest` (5/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wordpress/blob/5.8.0-debian-10-r31/5/debian-10/Dockerfile)
|
||||||
|
|
||||||
Subscribe to project updates by watching the [bitnami/wordpress GitHub repo](https://github.com/bitnami/bitnami-docker-wordpress).
|
Subscribe to project updates by watching the [bitnami/wordpress GitHub repo](https://github.com/bitnami/bitnami-docker-wordpress).
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user