mirror of
https://github.com/bitnami/containers.git
synced 2026-03-20 14:58:20 +08:00
7.4.2-ol-7-r8 release
This commit is contained in:
@@ -16,7 +16,7 @@ RUN curl --silent -L https://github.com/tianon/gosu/releases/download/1.11/gosu-
|
||||
COPY rootfs /
|
||||
RUN /postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="logstash" \
|
||||
BITNAMI_IMAGE_VERSION="7.4.2-ol-7-r7" \
|
||||
BITNAMI_IMAGE_VERSION="7.4.2-ol-7-r8" \
|
||||
PATH="/opt/bitnami/logstash/bin:/opt/bitnami/java/bin:$PATH"
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
@@ -35,7 +35,7 @@ ensure_dir_exists() {
|
||||
local owner="${2:-}"
|
||||
|
||||
mkdir -p "${dir}"
|
||||
if [[ "$owner" != "" ]]; then
|
||||
if [[ -n $owner ]]; then
|
||||
owned_by "$dir" "$owner"
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#########################
|
||||
dns_lookup() {
|
||||
local host="${1:?host is missing}"
|
||||
getent ahosts "$host" | awk '/STREAM/ {print $1 }'
|
||||
getent ahosts "$host" | awk '/STREAM/ {print $1 }'
|
||||
}
|
||||
|
||||
########################
|
||||
@@ -36,9 +36,9 @@ get_machine_ip() {
|
||||
#########################
|
||||
is_hostname_resolved() {
|
||||
local -r host="${1:?missing value}"
|
||||
if dns_lookup "$host" > /dev/null; then
|
||||
if [[ -n "$(dns_lookup "$host")" ]]; then
|
||||
true
|
||||
else
|
||||
false
|
||||
false
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -44,7 +44,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/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`7-ol-7`, `7.4.2-ol-7-r7` (7/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-logstash/blob/7.4.2-ol-7-r7/7/ol-7/Dockerfile)
|
||||
* [`7-ol-7`, `7.4.2-ol-7-r8` (7/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-logstash/blob/7.4.2-ol-7-r8/7/ol-7/Dockerfile)
|
||||
* [`7-debian-9`, `7.4.2-debian-9-r2`, `7`, `7.4.2`, `7.4.2-r2`, `latest` (7/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-logstash/blob/7.4.2-debian-9-r2/7/debian-9/Dockerfile)
|
||||
* [`7-centos-7`, `7.4.2-centos-7-r0` (7/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-logstash/blob/7.4.2-centos-7-r0/7/centos-7/Dockerfile)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user