fluentd-ui icon indicating copy to clipboard operation
fluentd-ui copied to clipboard

container auto start/setup

Open xoroz opened this issue 6 years ago • 1 comments

I run it inside a docker container using this definition

FROM xoroz/fluentdui:latest MAINTAINER Felipe Ferreira [email protected] RUN apt-get update -qq RUN apt-get install -y wget gnupg2 ruby-full gcc make RUN gem install fluentd RUN gem install fluent-plugin-elasticsearch RUN apt install -y zlib1g-dev patch RUN gem install -V fluentd-ui RUN mkdir -p /etc/fluent COPY ./fluent.conf /etc/fluent/ EXPOSE 9292/tcp EXPOSE 5140/tcp EXPOSE 5140/udp ENTRYPOINT [ "/usr/local/bin/fluentd-ui", "start" ]

the only problem is that everytime i bring up the container I have to manualy enter via WEB to configure and start

it it posibile to auto setup/start some how ?

thank you all for this very cool software

xoroz avatar Mar 28 '19 15:03 xoroz

Maybe the following steps will help you (not tested)

  1. Set up your fluentd-ui
  2. Generate your fluentd-ui and fluentd configuration via WEB
  3. Store your fluentd-ui and fluentd configuration
  4. COPY them into your container
  5. Run the new container with fluentd-ui

okkez avatar Mar 29 '19 02:03 okkez