We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Maybe the following steps will help you (not tested)
COPY
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: