This repository has been archived on 2024-02-18. You can view files and clone it, but cannot push or open issues or pull requests.
fluentd/Dockerfile

6 lines
341 B
Docker

FROM fluent/fluentd:v1.16-debian-1
USER root
# Prerequisites for GeoIP2
RUN apt update && apt install -y build-essential libgeoip-dev autoconf libtool && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN ["gem", "install", "fluent-plugin-elasticsearch", "fluent-plugin-rewrite-tag-filter", "fluent-plugin-geoip", "--no-document"]
USER fluent