[bitnami/neo4j] Release 4.4.22-debian-11-r0 (#39145)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-06-27 21:16:04 +02:00 committed by GitHub
parent a1fe777f11
commit d9d3d152e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 12 deletions

View File

@ -7,13 +7,13 @@ ARG JAVA_EXTRA_SECURITY_DIR="/bitnami/java/extra-security"
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-06-27T04:43:41Z" \
org.opencontainers.image.created="2023-06-27T18:53:47Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="4.4.21-debian-11-r11" \
org.opencontainers.image.ref.name="4.4.22-debian-11-r0" \
org.opencontainers.image.title="neo4j" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="4.4.21"
org.opencontainers.image.version="4.4.22"
ENV HOME="/opt/bitnami/neo4j/.home" \
OS_ARCH="${TARGETARCH:-amd64}" \
@ -27,7 +27,7 @@ RUN install_packages ca-certificates curl jq procps zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"java-11.0.19-7-2-linux-${OS_ARCH}-debian-11" \
"neo4j-4.4.21-0-linux-${OS_ARCH}-debian-11" \
"neo4j-4.4.22-0-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@ -46,7 +46,7 @@ RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/java/postunpack.sh
RUN /opt/bitnami/scripts/neo4j/postunpack.sh
ENV APP_VERSION="4.4.21" \
ENV APP_VERSION="4.4.22" \
BITNAMI_APP_NAME="neo4j" \
JAVA_HOME="/opt/bitnami/java" \
JAVA_OPTS="-Duser.home=/opt/bitnami/neo4j/.home" \

View File

@ -9,6 +9,6 @@
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "4.4.21-0"
"version": "4.4.22-0"
}
}

View File

@ -106,8 +106,6 @@ generate_cron_conf() {
local schedule="* * * * *"
local clean="true"
local clean="true"
# Parse optional CLI flags
shift 2
while [[ "$#" -gt 0 ]]; do
@ -133,7 +131,12 @@ generate_cron_conf() {
mkdir -p /etc/cron.d
if "$clean"; then
echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name"
cat > "/etc/cron.d/${service_name}" <<EOF
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
${schedule} ${run_as} ${cmd}
EOF
else
echo "${schedule} ${run_as} ${cmd}" >> /etc/cron.d/"$service_name"
fi
@ -189,7 +192,10 @@ generate_monit_conf() {
is_boolean_yes "$disabled" && conf_suffix=".disabled"
mkdir -p "$monit_conf_dir"
cat >"${monit_conf_dir}/${service_name}.conf${conf_suffix:-}" <<EOF
cat > "${monit_conf_dir}/${service_name}.conf${conf_suffix:-}" <<EOF
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
check process ${service_name}
with pidfile "${pid_file}"
start program = "${start_command}" with timeout 90 seconds
@ -248,7 +254,10 @@ generate_logrotate_conf() {
done
mkdir -p "$logrotate_conf_dir"
cat <<EOF | sed '/^\s*$/d' >"${logrotate_conf_dir}/${service_name}"
cat <<EOF | sed '/^\s*$/d' > "${logrotate_conf_dir}/${service_name}"
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
${log_path} {
${period}
rotate ${rotations}
@ -393,6 +402,9 @@ generate_systemd_conf() {
fi
# Generate the Systemd unit
cat > "$service_file" <<EOF
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
[Unit]
Description=Bitnami service for ${name}
# Starting/stopping the main bitnami service should cause the same effect for this service

View File

@ -1,4 +1,4 @@
rolling-tags:
- "4"
- 4-debian-11
- 4.4.21
- 4.4.22