docker-elk-ssl/kibana/Dockerfile
tony 17cdd5fd22 Replaced logstash image with latest official image.
Manages elasticsearch container using the latest official image inside this repository.
Manages the kibana container using the latest official image inside this repository.
Updated README.
2015-07-23 14:03:42 +02:00

10 lines
220 B
Docker

FROM kibana:latest
RUN apt-get update && apt-get install -y netcat
COPY config/kibana.yml /opt/kibana/config/kibana.yml
COPY entrypoint.sh /tmp/entrypoint.sh
RUN chmod +x /tmp/entrypoint.sh
CMD ["/tmp/entrypoint.sh"]