diff --git a/0.12/Dockerfile b/0.12/Dockerfile deleted file mode 100644 index 156251d..0000000 --- a/0.12/Dockerfile +++ /dev/null @@ -1,48 +0,0 @@ -FROM gcr.io/google-containers/debian-base-amd64:0.1 -MAINTAINER Eduardo Silva -LABEL Description="Fluent Bit docker image" Vendor="Fluent Organization" Version="1.1" - -# Fluent Bit version -ENV FLB_MAJOR 0 -ENV FLB_MINOR 12 -ENV FLB_PATCH 5 -ENV FLB_VERSION 0.12.5 - -ENV FLB_TARBALL http://github.com/fluent/fluent-bit/archive/v$FLB_VERSION.zip - -RUN mkdir -p /fluent-bit/bin /fluent-bit/etc /fluent-bit/log - -RUN apt-get -qq update \ - && apt-get install -y -qq \ - build-essential \ - cmake \ - make \ - wget \ - unzip \ - libsystemd-dev \ - && wget -O "/tmp/fluent-bit-${FLB_VERSION}.zip" ${FLB_TARBALL} \ - && cd /tmp && unzip "fluent-bit-$FLB_VERSION.zip" \ - && cd "fluent-bit-$FLB_VERSION"/build/ \ - && cmake -DFLB_DEBUG=On -DFLB_TRACE=On -DFLB_JEMALLOC=On -DFLB_BUFFERING=On ../ \ - && make \ - && install bin/fluent-bit /fluent-bit/bin/ \ - && apt-get remove --purge --auto-remove -y -qq \ - build-essential \ - cmake \ - make \ - wget \ - unzip \ - libsystemd-dev \ - bzip2 \ - openssl \ - manpages \ - && apt-get install -y -qq --no-install-recommends ca-certificates \ - && rm -rf /tmp/* - -# Configuration files -COPY fluent-bit.conf /fluent-bit/etc/ -COPY parsers.conf /fluent-bit/etc/ -COPY parsers_java.conf /fluent-bit/etc/ - -# Entry point -CMD ["/fluent-bit/bin/fluent-bit", "-c", "/fluent-bit/etc/fluent-bit.conf"] diff --git a/0.14/Dockerfile b/0.14/Dockerfile deleted file mode 100644 index b5e165d..0000000 --- a/0.14/Dockerfile +++ /dev/null @@ -1,65 +0,0 @@ -FROM gcr.io/google-containers/debian-base-amd64:0.3.1 as builder - -# Fluent Bit version -ENV FLB_MAJOR 0 -ENV FLB_MINOR 14 -ENV FLB_PATCH 9 -ENV FLB_VERSION 0.14.9 - -ENV DEBIAN_FRONTEND noninteractive - -ENV FLB_TARBALL http://github.com/fluent/fluent-bit/archive/v$FLB_VERSION.zip - -RUN mkdir -p /fluent-bit/bin /fluent-bit/etc /fluent-bit/log /tmp/src/ - -RUN apt-get update \ - && apt-get dist-upgrade -y \ - && apt-get install -y \ - build-essential \ - cmake \ - make \ - wget \ - unzip \ - libsystemd-dev \ - libssl1.0-dev \ - libasl-dev \ - libsasl2-dev \ - && wget -O "/tmp/fluent-bit-${FLB_VERSION}.zip" ${FLB_TARBALL} \ - && cd /tmp && unzip "fluent-bit-$FLB_VERSION.zip" \ - && cd "fluent-bit-$FLB_VERSION"/build/ \ - && cmake -DFLB_DEBUG=On \ - -DFLB_TRACE=Off \ - -DFLB_JEMALLOC=On \ - -DFLB_BUFFERING=On \ - -DFLB_TLS=On \ - -DFLB_SHARED_LIB=Off \ - -DFLB_EXAMPLES=Off \ - -DFLB_HTTP_SERVER=On \ - -DFLB_OUT_KAFKA=On .. \ - && make \ - && install bin/fluent-bit /fluent-bit/bin/ - -# Configuration files -COPY fluent-bit.conf \ - parsers.conf \ - parsers_java.conf \ - parsers_mult.conf \ - parsers_openstack.conf \ - parsers_cinder.conf \ - /fluent-bit/etc/ - -FROM gcr.io/google-containers/debian-base-amd64:0.3.1 -MAINTAINER Eduardo Silva -LABEL Description="Fluent Bit docker image" Vendor="Fluent Organization" Version="1.1" - -RUN apt-get update \ - && apt-get dist-upgrade -y \ - && apt-get install --no-install-recommends ca-certificates libssl1.0.2 -y libsasl2-2 \ - && rm -rf /var/lib/apt/lists/* \ - && apt-get autoclean -COPY --from=builder /fluent-bit /fluent-bit - -EXPOSE 2020 - -# Entry point -CMD ["/fluent-bit/bin/fluent-bit", "-c", "/fluent-bit/etc/fluent-bit.conf"] diff --git a/0.14/fluent-bit.conf b/0.14/fluent-bit.conf deleted file mode 100644 index ec81989..0000000 --- a/0.14/fluent-bit.conf +++ /dev/null @@ -1,15 +0,0 @@ -[SERVICE] - Flush 1 - Daemon Off - Log_Level info - Log_File /fluent-bit/log/fluent-bit.log - Parsers_File parsers.conf - Parsers_File parsers_java.conf - -[INPUT] - Name Forward - Port 24224 - -[OUTPUT] - Name stdout - Match * diff --git a/0.14/parsers.conf b/0.14/parsers.conf deleted file mode 100644 index 1b1d0eb..0000000 --- a/0.14/parsers.conf +++ /dev/null @@ -1,101 +0,0 @@ -[PARSER] - Name apache - Format regex - Regex ^(?[^ ]*) [^ ]* (?[^ ]*) \[(?