Commit b316edfd authored by Anthony Lapenna's avatar Anthony Lapenna

Legacy version

parent b5a4deee
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
[![Join the chat at https://gitter.im/deviantony/docker-elk](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Join the chat at https://gitter.im/deviantony/docker-elk](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Run the latest version of the ELK (Elasticseach, Logstash, Kibana) stack with Docker and Docker-compose. Run tthe ELK (Elasticseach, Logstash, Kibana) stack with Docker and Docker-compose.
It will give you the ability to analyze any data set by using the searching/aggregation capabilities of Elasticseach and the visualization power of Kibana. It will give you the ability to analyze any data set by using the searching/aggregation capabilities of Elasticseach and the visualization power of Kibana.
Based on the official images: Based on the official images:
* [elasticsearch](https://registry.hub.docker.com/_/elasticsearch/) * [elasticsearch](https://registry.hub.docker.com/_/elasticsearch/) **version 2**
* [logstash](https://registry.hub.docker.com/_/logstash/) * [logstash](https://registry.hub.docker.com/_/logstash/) **version 2**
* [kibana](https://registry.hub.docker.com/_/kibana/) * [kibana](https://registry.hub.docker.com/_/kibana/) **version 4**
# Requirements # Requirements
......
elasticsearch: elasticsearch:
image: elasticsearch:latest image: elasticsearch:2
command: elasticsearch -Des.network.host=0.0.0.0 command: elasticsearch -Des.network.host=0.0.0.0
ports: ports:
- "9200:9200" - "9200:9200"
......
FROM kibana:latest FROM kibana:4
RUN apt-get update && apt-get install -y netcat RUN apt-get update && apt-get install -y netcat
......
FROM logstash:latest FROM logstash:2
# Add your logstash plugins setup here # Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json # Example: RUN logstash-plugin install logstash-filter-json
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment