mirror of
https://github.com/bitnami/containers.git
synced 2026-03-23 14:57:41 +08:00
4.3.3-debian-10-r21 release
This commit is contained in:
@@ -17,7 +17,7 @@ RUN chmod g+rwX /opt/bitnami
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/neo4j/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="neo4j" \
|
||||
BITNAMI_IMAGE_VERSION="4.3.3-debian-10-r20" \
|
||||
BITNAMI_IMAGE_VERSION="4.3.3-debian-10-r21" \
|
||||
NEO4J_BOLT_PORT_NUMBER="" \
|
||||
NEO4J_HOST="" \
|
||||
NEO4J_HTTPS_PORT_NUMBER="" \
|
||||
|
||||
@@ -145,6 +145,47 @@ am_i_root() {
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
# Print OS metadata
|
||||
# Arguments:
|
||||
# $1 - Flag name
|
||||
# Flags:
|
||||
# --id - Distro ID
|
||||
# --version - Distro version
|
||||
# --branch - Distro branch
|
||||
# --codename - Distro codename
|
||||
# Returns:
|
||||
# String
|
||||
#########################
|
||||
get_os_metadata() {
|
||||
local -r flag_name="${1:?missing flag}"
|
||||
# Helper function
|
||||
get_os_release_metadata() {
|
||||
local -r env_name="${1:?missing environment variable name}"
|
||||
(
|
||||
. /etc/os-release
|
||||
echo "${!env_name}"
|
||||
)
|
||||
}
|
||||
case "$flag_name" in
|
||||
--id)
|
||||
get_os_release_metadata ID
|
||||
;;
|
||||
--version)
|
||||
get_os_release_metadata VERSION_ID
|
||||
;;
|
||||
--branch)
|
||||
get_os_release_metadata VERSION_ID | sed 's/\..*//'
|
||||
;;
|
||||
--codename)
|
||||
get_os_release_metadata VERSION_CODENAME
|
||||
;;
|
||||
*)
|
||||
error "Unknown flag ${flag_name}"
|
||||
return 1
|
||||
esac
|
||||
}
|
||||
|
||||
########################
|
||||
# Get total memory available
|
||||
# Arguments:
|
||||
|
||||
@@ -37,7 +37,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.3.3`, `4.3.3-debian-10-r20`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-neo4j/blob/4.3.3-debian-10-r20/4/debian-10/Dockerfile)
|
||||
* [`4`, `4-debian-10`, `4.3.3`, `4.3.3-debian-10-r21`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-neo4j/blob/4.3.3-debian-10-r21/4/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/neo4j GitHub repo](https://github.com/bitnami/bitnami-docker-neo4j).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user