7.8.1-debian-10-r85 release

This commit is contained in:
Bitnami Bot
2022-03-03 08:44:20 +00:00
parent a19e0360c6
commit aa17d79e77
5 changed files with 20 additions and 8 deletions

View File

@@ -28,7 +28,7 @@ RUN /opt/bitnami/scripts/jasperreports/postunpack.sh
RUN /opt/bitnami/scripts/java/postunpack.sh
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
ENV BITNAMI_APP_NAME="jasperreports" \
BITNAMI_IMAGE_VERSION="7.8.1-debian-10-r84" \
BITNAMI_IMAGE_VERSION="7.8.1-debian-10-r85" \
JAVA_HOME="/opt/bitnami/java" \
PATH="/opt/bitnami/java/bin:/opt/bitnami/tomcat/bin:/opt/bitnami/mysql/bin:/opt/bitnami/git/bin:/opt/bitnami/common/bin:$PATH"

View File

@@ -241,10 +241,16 @@ mysql_execute_print_output() {
[[ "${#extra_opts[@]}" -gt 0 ]] && args+=("${extra_opts[@]}")
# Obtain the command specified via stdin
local mysql_cmd
mysql_cmd="$(</dev/stdin)"
debug "Executing SQL command:\n$mysql_cmd"
"$DB_BIN_DIR/mysql" "${args[@]}" <<<"$mysql_cmd"
if [[ "${BITNAMI_DEBUG:-false}" = true ]]; then
local mysql_cmd
mysql_cmd="$(</dev/stdin)"
debug "Executing SQL command:\n$mysql_cmd"
"$DB_BIN_DIR/mysql" "${args[@]}" <<<"$mysql_cmd"
else
# Do not store the command(s) as a variable, to avoid issues when importing large files
# https://github.com/bitnami/bitnami-docker-mariadb/issues/251
"$DB_BIN_DIR/mysql" "${args[@]}"
fi
}
########################

View File

@@ -180,8 +180,12 @@ EOF
# Use tomcat:root ownership for compatibility when running as a non-root user
am_i_root && configure_permissions_ownership "$TOMCAT_WEBAPPS_DIR" -d "775" -f "664" -u "$TOMCAT_DAEMON_USER" -g "root"
info "Deploying Tomcat from scratch"
cp -rp "$TOMCAT_BASE_DIR"/webapps_default/* "$TOMCAT_WEBAPPS_DIR"
if is_boolean_yes "$TOMCAT_INSTALL_DEFAULT_WEBAPPS"; then
info "Deploying Tomcat from scratch"
cp -rp "$TOMCAT_BASE_DIR"/webapps_default/* "$TOMCAT_WEBAPPS_DIR"
else
info "Skipping deployment of default webapps"
fi
# Access control is configured in the application's context.xml with a Valve element
# context.xml docs: https://tomcat.apache.org/tomcat-9.0-doc/config/context.html

View File

@@ -31,6 +31,7 @@ tomcat_env_vars=(
TOMCAT_ENABLE_AJP
TOMCAT_START_RETRIES
TOMCAT_EXTRA_JAVA_OPTS
TOMCAT_INSTALL_DEFAULT_WEBAPPS
JAVA_OPTS
)
for env_var in "${tomcat_env_vars[@]}"; do
@@ -77,6 +78,7 @@ export TOMCAT_ENABLE_AUTH="${TOMCAT_ENABLE_AUTH:-yes}"
export TOMCAT_ENABLE_AJP="${TOMCAT_ENABLE_AJP:-no}"
export TOMCAT_START_RETRIES="${TOMCAT_START_RETRIES:-12}"
export TOMCAT_EXTRA_JAVA_OPTS="${TOMCAT_EXTRA_JAVA_OPTS:-}"
export TOMCAT_INSTALL_DEFAULT_WEBAPPS="${TOMCAT_INSTALL_DEFAULT_WEBAPPS:-yes}"
# Default JVM configuration
export JAVA_HOME="${BITNAMI_ROOT_DIR}/java"

View File

@@ -43,7 +43,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/).
- [`7`, `7-debian-10`, `7.8.1`, `7.8.1-debian-10-r84`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jasperreports/blob/7.8.1-debian-10-r84/7/debian-10/Dockerfile)
- [`7`, `7-debian-10`, `7.8.1`, `7.8.1-debian-10-r85`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-jasperreports/blob/7.8.1-debian-10-r85/7/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/jasperreports GitHub repo](https://github.com/bitnami/bitnami-docker-jasperreports).