1.3.6-debian-10-r0 release
This commit is contained in:
parent
6888550297
commit
cbb4d3a32c
|
|
@ -0,0 +1,22 @@
|
|||
FROM bitnami/minideb:buster
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl libc6 libgcc1 libgcrypt20 libgpg-error0 liblz4-1 liblzma5 libsasl2-2 libssl1.1 libsystemd0 procps sudo unzip wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/fluent-bit-1.3.6-0-linux-amd64-debian-10.tar.gz && \
|
||||
echo "1a89be44584d381e23d64722b28f8528fd9b847cc2944c6d8c8bec0e87e64057 /tmp/bitnami/pkg/cache/fluent-bit-1.3.6-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/fluent-bit-1.3.6-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/fluent-bit-1.3.6-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="fluent-bit" \
|
||||
BITNAMI_IMAGE_VERSION="1.3.6-debian-10-r0" \
|
||||
PATH="/opt/bitnami/fluent-bit/bin:$PATH"
|
||||
|
||||
EXPOSE 2020
|
||||
|
||||
WORKDIR /opt/bitnami/fluent-bit
|
||||
USER 1001
|
||||
ENTRYPOINT [ "fluent-bit" ]
|
||||
CMD [ "-c", "/opt/bitnami/fluent-bit/conf/fluent-bit.conf" ]
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
version: '2'
|
||||
|
||||
services:
|
||||
fluent-bit:
|
||||
image: bitnami/fluent-bit:1
|
||||
ports:
|
||||
- '2020:2020'
|
||||
|
|
@ -43,13 +43,13 @@ $ kubectl apply -f test.yaml
|
|||
|
||||
# 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-ol-7`, `1.3.6-ol-7-r7` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-fluent-bit/blob/1.3.6-ol-7-r7/1/ol-7/Dockerfile)
|
||||
* [`1-debian-9`, `1.3.6-debian-9-r7`, `1`, `1.3.6`, `1.3.6-r7`, `latest` (1/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-fluent-bit/blob/1.3.6-debian-9-r7/1/debian-9/Dockerfile)
|
||||
* [`1-debian-10`, `1.3.6-debian-10-r0`, `1`, `1.3.6`, `1.3.6-r0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-fluent-bit/blob/1.3.6-debian-10-r0/1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/fluent-bit GitHub repo](https://github.com/bitnami/bitnami-docker-fluent-bit).
|
||||
|
||||
|
|
@ -70,7 +70,7 @@ $ docker pull bitnami/fluent-bit:[TAG]
|
|||
If you wish, you can also build the image yourself.
|
||||
|
||||
```bash
|
||||
$ docker build -t bitnami/fluent-bit:latest 'https://github.com/bitnami/bitnami-docker-fluent-bit.git#master:1/debian-9'
|
||||
$ docker build -t bitnami/fluent-bit:latest 'https://github.com/bitnami/bitnami-docker-fluent-bit.git#master:1/debian-10'
|
||||
```
|
||||
|
||||
# Connecting to other containers
|
||||
|
|
|
|||
Loading…
Reference in New Issue