4.4.2-debian-10-r0 release

This commit is contained in:
Bitnami Bot
2021-12-17 19:27:13 +00:00
parent 8a71e22772
commit 2f4bdab629
5 changed files with 25 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages acl ca-certificates curl gzip jq libc6 procps tar zlib1g
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.13-0" --checksum 9552e53ccd3b0ec85a82c31c26a1462260e28b7c58770a5c53560afb02ec66d9
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "neo4j" "4.4.0-1" --checksum 6724fb5cbc701bdbdeb685a5594e247083aa9ff2284e78aa0bdff75dc2210b5b
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "neo4j" "4.4.2-0" --checksum d84ae8ce5659c58a170d543b45c74e7afd8d58b22fe080c0aaf611c240e3dba6
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e
RUN chmod g+rwX /opt/bitnami
@@ -20,7 +20,7 @@ COPY rootfs /
RUN /opt/bitnami/scripts/java/postunpack.sh
RUN /opt/bitnami/scripts/neo4j/postunpack.sh
ENV BITNAMI_APP_NAME="neo4j" \
BITNAMI_IMAGE_VERSION="4.4.0-debian-10-r14" \
BITNAMI_IMAGE_VERSION="4.4.2-debian-10-r0" \
JAVA_HOME="/opt/bitnami/java" \
NEO4J_BOLT_PORT_NUMBER="" \
NEO4J_HOST="" \

View File

@@ -15,9 +15,9 @@
},
"neo4j": {
"arch": "amd64",
"digest": "6724fb5cbc701bdbdeb685a5594e247083aa9ff2284e78aa0bdff75dc2210b5b",
"digest": "d84ae8ce5659c58a170d543b45c74e7afd8d58b22fe080c0aaf611c240e3dba6",
"distro": "debian-10",
"type": "NAMI",
"version": "4.4.0-1"
"version": "4.4.2-0"
}
}

View File

@@ -446,3 +446,19 @@ generate_sha_hash() {
echo -n "$str" | "sha${algorithm}sum" | awk '{print $1}'
}
########################
# Converts a string to its hexadecimal representation
# Arguments:
# $1 - string
# Returns:
# hexadecimal representation of the string
#########################
convert_to_hex() {
local -r str=${1:?missing input string}
local -i iterator
local char
for ((iterator=0; iterator<${#str}; iterator++)); do
char=${str:iterator:1}
printf '%x' "'${char}"
done
}

View File

@@ -177,6 +177,8 @@ web_server_reload() {
# --document-root - Path to document root directory
# Apache-specific flags:
# --apache-additional-configuration - Additional vhost configuration (no default)
# --apache-additional-http-configuration - Additional HTTP vhost configuration (no default)
# --apache-additional-https-configuration - Additional HTTPS vhost configuration (no default)
# --apache-before-vhost-configuration - Configuration to add before the <VirtualHost> directive (no default)
# --apache-allow-override - Whether to allow .htaccess files (only allowed when --move-htaccess is set to 'no' and type is not defined)
# --apache-extra-directory-configuration - Extra configuration for the document root directory
@@ -224,6 +226,8 @@ ensure_web_server_app_configuration_exists() {
# Specific Apache flags
--apache-additional-configuration \
| --apache-additional-http-configuration \
| --apache-additional-https-configuration \
| --apache-before-vhost-configuration \
| --apache-allow-override \
| --apache-extra-directory-configuration \

View File

@@ -40,7 +40,7 @@ You can find the default credentials and available configuration options in the
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/).
* [`4`, `4-debian-10`, `4.4.0`, `4.4.0-debian-10-r14`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-neo4j/blob/4.4.0-debian-10-r14/4/debian-10/Dockerfile)
* [`4`, `4-debian-10`, `4.4.2`, `4.4.2-debian-10-r0`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-neo4j/blob/4.4.2-debian-10-r0/4/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/neo4j GitHub repo](https://github.com/bitnami/bitnami-docker-neo4j).