[bitnami/logstash] Release 7.17.9-debian-11-r4 (#24015)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-02-14 23:34:59 +01:00
committed by GitHub
parent 93d9487bb9
commit e5c1303bbc
2 changed files with 5 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="7.17.9-debian-11-r3" \
org.opencontainers.image.ref.name="7.17.9-debian-11-r4" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/logstash" \
org.opencontainers.image.title="logstash" \
org.opencontainers.image.vendor="VMware, Inc." \

View File

@@ -184,10 +184,12 @@ $ docker run -d --name logstash \
The Bitnami Logstash image provides a way to create your custom image installing plugins on build time. This is the preferred way to persist plugins when using Logstash, as they will not be installed every time the container is started but just once at build time.
To create your own image providing plugins execute the flowing command:
To create your own image providing plugins execute the following command. Remember to replace the `VERSION` and `OPERATING-SYSTEM` path placeholders in the example command below with the correct values.
```console
$ docker build --build-arg LOGSTASH_PLUGINS=<plugin1,plugin2,...> -t bitnami/logstash:latest 'https://github.com/bitnami/containers/blob/main/bitnami/logstash.git#main:8/debian-11'
$ git clone https://github.com/bitnami/containers.git
$ cd bitnami/logstash/VERSION/OPERATING-SYSTEM
$ docker build --build-arg LOGSTASH_PLUGINS=<plugin1,plugin2,...> -t bitnami/logstash:latest .
```
The command above will build the image providing this GitHub repository as build context, and will pass the list of plugins to install to the build logic.