container auto start/setup
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
Maybe the following steps will help you (not tested)
- Set up your fluentd-ui
- Generate your fluentd-ui and fluentd configuration via WEB
- Store your fluentd-ui and fluentd configuration
COPYthem into your container- Run the new container with fluentd-ui