diff --git a/bitnami/logstash/7/debian-11/Dockerfile b/bitnami/logstash/7/debian-11/Dockerfile index f2d3b1249aa1..56716d524d87 100644 --- a/bitnami/logstash/7/debian-11/Dockerfile +++ b/bitnami/logstash/7/debian-11/Dockerfile @@ -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." \ diff --git a/bitnami/logstash/README.md b/bitnami/logstash/README.md index d1c79785c619..18773b0c4de2 100644 --- a/bitnami/logstash/README.md +++ b/bitnami/logstash/README.md @@ -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= -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= -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.