Create fluentd

This commit is contained in:
Pijus Kamandulis 2019-12-30 23:14:01 +02:00 committed by GitHub
parent 070b795b9f
commit 5a3dea9334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
docker/fluentd Normal file
View File

@ -0,0 +1,11 @@
# Build with: docker image build -t fluentdui:1.2.1 .
# Run with: docker run -d -p 9292:9292 -p 24224:24224 fluentdui:1.2.1
FROM ruby:2.4.0
EXPOSE 24224
EXPOSE 9292
RUN gem install --no-document --version 1.2.1 fluentd-ui
CMD ["fluentd-ui", "start"]