3.3.0-debian-10-r148 release

This commit is contained in:
Bitnami Bot
2020-06-24 10:26:37 +00:00
parent d088560cbd
commit 0ea7425e77
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ ENV ALLOW_EMPTY_PASSWORD="no" \
APACHE_HTTPS_PORT_NUMBER="443" \
APACHE_HTTP_PORT_NUMBER="80" \
BITNAMI_APP_NAME="phpbb" \
BITNAMI_IMAGE_VERSION="3.3.0-debian-10-r147" \
BITNAMI_IMAGE_VERSION="3.3.0-debian-10-r148" \
MARIADB_HOST="mariadb" \
MARIADB_PORT_NUMBER="3306" \
MARIADB_ROOT_PASSWORD="" \

View File

@@ -8,7 +8,7 @@ set -o pipefail
# set -o xtrace # Uncomment this line for debugging purposes
# Only execute init scripts once
if [[ ! -f "/bitnami/phpbb/.user_scripts_initialized" ]]; then
if [[ ! -f "/bitnami/phpbb/.user_scripts_initialized" && -d "/docker-entrypoint-init.d" ]]; then
read -r -a init_scripts <<< "$(find "/docker-entrypoint-init.d" -type f -print0 | xargs -0)"
if [[ "${#init_scripts[@]}" -gt 0 ]] && [[ ! -f "/bitnami/phpbb/.user_scripts_initialized" ]]; then
mkdir -p "/bitnami/phpbb"