6.8.18-debian-10-r9 release

This commit is contained in:
Bitnami Bot 2021-08-12 23:36:13 +00:00
parent fea43d253f
commit 40ad5c0fe2
3 changed files with 18 additions and 2 deletions

View File

@ -18,7 +18,7 @@ RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/kibana/postunpack.sh
ENV BITNAMI_APP_NAME="kibana" \
BITNAMI_IMAGE_VERSION="6.8.18-debian-10-r8"
BITNAMI_IMAGE_VERSION="6.8.18-debian-10-r9"
EXPOSE 5601

View File

@ -91,6 +91,22 @@ is_true_false_value() {
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
# Arguments:

View File

@ -37,7 +37,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
* [`7`, `7-debian-10`, `7.13.4`, `7.13.4-debian-10-r13`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kibana/blob/7.13.4-debian-10-r13/7/debian-10/Dockerfile)
* [`7.10.2`, `7.10.2-debian-10`, `7.10.2-debian-10-r174` (7.10.2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kibana/blob/7.10.2-debian-10-r174/7.10.2/debian-10/Dockerfile)
* [`6`, `6-debian-10`, `6.8.18`, `6.8.18-debian-10-r8` (6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kibana/blob/6.8.18-debian-10-r8/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-kibana/blob/6.8.18-debian-10-r9/6/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/kibana GitHub repo](https://github.com/bitnami/bitnami-docker-kibana).