mirror of
https://github.com/krislamo/graylog_demo
synced 2024-12-16 06:50:35 +00:00
11 lines
335 B
Docker
11 lines
335 B
Docker
FROM fluent/fluentd:v1.9.0-debian-1.0
|
|
USER root
|
|
RUN apt-get update \
|
|
&& apt-get -y install --no-install-recommends wget \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN gem uninstall gelf -v 3.1.0
|
|
RUN gem install gelf -v 3.0.0
|
|
RUN gem install fluent-plugin-rewrite-tag-filter
|
|
RUN gem install fluent-plugin-gelf-hs
|
|
COPY fluent.conf /fluentd/etc/
|