7.14.0-debian-10-r9 release
This commit is contained in:
parent
9edfbc4c16
commit
fd4ffe4193
|
|
@ -21,7 +21,7 @@ RUN chmod g+rwX /opt/bitnami
|
||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /opt/bitnami/scripts/elasticsearch/postunpack.sh
|
RUN /opt/bitnami/scripts/elasticsearch/postunpack.sh
|
||||||
ENV BITNAMI_APP_NAME="elasticsearch" \
|
ENV BITNAMI_APP_NAME="elasticsearch" \
|
||||||
BITNAMI_IMAGE_VERSION="7.14.0-debian-10-r8" \
|
BITNAMI_IMAGE_VERSION="7.14.0-debian-10-r9" \
|
||||||
JAVA_HOME="/opt/bitnami/java" \
|
JAVA_HOME="/opt/bitnami/java" \
|
||||||
LD_LIBRARY_PATH="/opt/bitnami/elasticsearch/jdk/lib:/opt/bitnami/elasticsearch/jdk/lib/server:$LD_LIBRARY_PATH"
|
LD_LIBRARY_PATH="/opt/bitnami/elasticsearch/jdk/lib:/opt/bitnami/elasticsearch/jdk/lib/server:$LD_LIBRARY_PATH"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -91,6 +91,22 @@ is_true_false_value() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Check if the provided argument is a boolean 1/0 value
|
||||||
|
# Arguments:
|
||||||
|
# $1 - Value to check
|
||||||
|
# Returns:
|
||||||
|
# Boolean
|
||||||
|
#########################
|
||||||
|
is_1_0_value() {
|
||||||
|
local -r bool="${1:-}"
|
||||||
|
if [[ "$bool" =~ ^[10]$ ]]; then
|
||||||
|
true
|
||||||
|
else
|
||||||
|
false
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Check if the provided argument is an empty string or not defined
|
# Check if the provided argument is an empty string or not defined
|
||||||
# Arguments:
|
# Arguments:
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,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/).
|
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.14.0`, `7.14.0-debian-10-r8`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-elasticsearch/blob/7.14.0-debian-10-r8/7/debian-10/Dockerfile)
|
* [`7`, `7-debian-10`, `7.14.0`, `7.14.0-debian-10-r9`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-elasticsearch/blob/7.14.0-debian-10-r9/7/debian-10/Dockerfile)
|
||||||
* [`7.10.2`, `7.10.2-debian-10`, `7.10.2-debian-10-r183` (7.10.2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-elasticsearch/blob/7.10.2-debian-10-r183/7.10.2/debian-10/Dockerfile)
|
* [`7.10.2`, `7.10.2-debian-10`, `7.10.2-debian-10-r183` (7.10.2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-elasticsearch/blob/7.10.2-debian-10-r183/7.10.2/debian-10/Dockerfile)
|
||||||
* [`6`, `6-debian-10`, `6.8.18`, `6.8.18-debian-10-r9` (6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-elasticsearch/blob/6.8.18-debian-10-r9/6/debian-10/Dockerfile)
|
* [`6`, `6-debian-10`, `6.8.18`, `6.8.18-debian-10-r9` (6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-elasticsearch/blob/6.8.18-debian-10-r9/6/debian-10/Dockerfile)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue