mirror of
https://github.com/bitnami/containers.git
synced 2026-02-23 08:57:25 +08:00
1.8.3-debian-10-r66 release
This commit is contained in:
@@ -19,7 +19,7 @@ RUN chmod g+rwX /opt/bitnami
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/influxdb/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="influxdb" \
|
||||
BITNAMI_IMAGE_VERSION="1.8.3-debian-10-r65" \
|
||||
BITNAMI_IMAGE_VERSION="1.8.3-debian-10-r66" \
|
||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/influxdb/bin:$PATH"
|
||||
|
||||
VOLUME [ "/bitnami/influxdb" ]
|
||||
|
||||
@@ -10,15 +10,17 @@
|
||||
# Functions
|
||||
|
||||
########################
|
||||
# Resolve dns
|
||||
# Resolve IP address for a host/domain (i.e. DNS lookup)
|
||||
# Arguments:
|
||||
# $1 - Hostname to resolve
|
||||
# $2 - IP address version (v4, v6), leave empty for resolving to any version
|
||||
# Returns:
|
||||
# IP
|
||||
#########################
|
||||
dns_lookup() {
|
||||
local host="${1:?host is missing}"
|
||||
getent ahosts "$host" | awk '/STREAM/ {print $1 }'
|
||||
local ip_version="${2:-}"
|
||||
getent "ahosts${ip_version}" "$host" | awk '/STREAM/ {print $1 }' | head -n 1
|
||||
}
|
||||
|
||||
#########################
|
||||
|
||||
@@ -37,7 +37,7 @@ Bitnami containers can be used with [Kubeapps](https://kubeapps.com/) for deploy
|
||||
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/).
|
||||
|
||||
|
||||
* [`1`, `1-debian-10`, `1.8.3`, `1.8.3-debian-10-r65`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-influxdb/blob/1.8.3-debian-10-r65/1/debian-10/Dockerfile)
|
||||
* [`1`, `1-debian-10`, `1.8.3`, `1.8.3-debian-10-r66`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-influxdb/blob/1.8.3-debian-10-r66/1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/influxdb GitHub repo](https://github.com/bitnami/bitnami-docker-influxdb).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user