10.8.0-debian-10-r8 release

This commit is contained in:
Bitnami Bot
2021-09-16 01:08:51 +00:00
parent e98d2c2b44
commit 07917c278e
3 changed files with 44 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/wavefront-proxy/postunpack.sh
ENV BITNAMI_APP_NAME="wavefront-proxy" \
BITNAMI_IMAGE_VERSION="10.8.0-debian-10-r7" \
BITNAMI_IMAGE_VERSION="10.8.0-debian-10-r8" \
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:$PATH"
EXPOSE 2878

View File

@@ -141,10 +141,51 @@ am_i_root() {
if [[ "$(id -u)" = "0" ]]; then
true
else
false
false
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:

View File

@@ -28,7 +28,7 @@ $ docker run --name wavefront-proxy bitnami/wavefront-proxy:latest
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/).
* [`10`, `10-debian-10`, `10.8.0`, `10.8.0-debian-10-r7`, `latest` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wavefront-proxy/blob/10.8.0-debian-10-r7/10/debian-10/Dockerfile)
* [`10`, `10-debian-10`, `10.8.0`, `10.8.0-debian-10-r8`, `latest` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-wavefront-proxy/blob/10.8.0-debian-10-r8/10/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/wavefront-proxy GitHub repo](https://github.com/bitnami/bitnami-docker-wavefront-proxy).