1.2.0-debian-10-r0 release
This commit is contained in:
parent
ae4d81ea03
commit
fc1354dffb
|
|
@ -0,0 +1,21 @@
|
|||
FROM bitnami/minideb:buster
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl procps sudo unzip wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/kafka-exporter-1.2.0-0-linux-amd64-debian-10.tar.gz && \
|
||||
echo "97a3a566cef11c784f3a92b38e4178c8399fb2a8af67b3008abe01733b8d4db6 /tmp/bitnami/pkg/cache/kafka-exporter-1.2.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/kafka-exporter-1.2.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/kafka-exporter-1.2.0-0-linux-amd64-debian-10.tar.gz
|
||||
RUN apt-get update && apt-get upgrade && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
|
||||
ENV BITNAMI_APP_NAME="kafka-exporter" \
|
||||
BITNAMI_IMAGE_VERSION="1.2.0-debian-10-r0" \
|
||||
PATH="/opt/bitnami/kafka-exporter/bin:$PATH"
|
||||
|
||||
EXPOSE 9308
|
||||
|
||||
WORKDIR /opt/bitnami/kafka-exporter
|
||||
USER 1001
|
||||
ENTRYPOINT [ "kafka_exporter" ]
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
version: '2'
|
||||
services:
|
||||
kafka-exporter:
|
||||
image: bitnami/kafka-exporter:1
|
||||
ports:
|
||||
- 9308:9308
|
||||
|
|
@ -39,12 +39,12 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
> NOTE: Debian 8 images have been deprecated in favor of Debian 9 images. Bitnami will not longer publish new Docker images based on Debian 8.
|
||||
> NOTE: Debian 9 images have been deprecated in favor of Debian 10 images. Bitnami will not longer publish new Docker images based on Debian 9.
|
||||
|
||||
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/).
|
||||
|
||||
|
||||
* [`1-debian-9`, `1.2.0-debian-9-r151`, `1`, `1.2.0`, `1.2.0-r151`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-kafka-exporter/blob/1.2.0-debian-9-r151/1/debian-9/Dockerfile)
|
||||
* [`1-debian-10`, `1.2.0-debian-10-r0`, `1`, `1.2.0`, `1.2.0-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kafka-exporter/blob/1.2.0-debian-10-r0/1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/kafka-exporter GitHub repo](https://github.com/bitnami/bitnami-docker-kafka-exporter).
|
||||
|
||||
|
|
@ -65,7 +65,7 @@ $ docker pull bitnami/kafka-exporter:[TAG]
|
|||
If you wish, you can also build the image yourself.
|
||||
|
||||
```bash
|
||||
$ docker build -t bitnami/kafka-exporter:latest 'https://github.com/bitnami/bitnami-docker-kafka-exporter.git#master:1/debian-9'
|
||||
$ docker build -t bitnami/kafka-exporter:latest 'https://github.com/bitnami/bitnami-docker-kafka-exporter.git#master:1/debian-10'
|
||||
```
|
||||
|
||||
# Connecting to other containers
|
||||
|
|
|
|||
Loading…
Reference in New Issue