[bitnami/neo4j] Release 5.3.0-debian-11-r1 (#20393)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-01-16 11:02:22 +01:00 committed by GitHub
parent 216cda7736
commit bb3a486baf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 5 deletions

View File

@ -6,7 +6,7 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="5.3.0-debian-11-r0" \
org.opencontainers.image.ref.name="5.3.0-debian-11-r1" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/neo4j" \
org.opencontainers.image.title="neo4j" \
org.opencontainers.image.vendor="VMware, Inc." \
@ -24,7 +24,7 @@ RUN install_packages ca-certificates curl jq procps zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"java-17.0.5-8-2-linux-${OS_ARCH}-debian-11" \
"neo4j-5.3.0-0-linux-${OS_ARCH}-debian-11" \
"neo4j-5.3.0-1-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-0-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \

View File

@ -15,9 +15,9 @@
},
"neo4j": {
"arch": "amd64",
"digest": "7420a733b29c680fbab322cee02e7e9c1279d674a3e4840294e77120b2287b56",
"digest": "ddfdf7324bd4b51399bdcba2b43a2d2557704c32d09a1c9e22cddaf5303dc620",
"distro": "debian-11",
"type": "NAMI",
"version": "5.3.0-0"
"version": "5.3.0-1"
}
}

View File

@ -158,7 +158,11 @@ neo4j_conf_set() {
# Check if the configuration exists in the file
if grep -q -E "$sanitized_pattern" "$file"; then
# It exists, so replace the line
replace_in_file "$file" "$sanitized_pattern" "$entry"
if [[ "${key}" =~ jvm.additional ]]; then
append_file_after_last_match "$file" "$sanitized_pattern" "$entry"
else
replace_in_file "$file" "$sanitized_pattern" "$entry"
fi
else
echo "$entry" >>"$file"
fi