mirror of
https://github.com/deviantony/docker-elk.git
synced 2025-12-18 08:10:24 +01:00
Remove X-Pack support for master branch
This commit is contained in:
@@ -4,8 +4,6 @@
|
|||||||
|
|
||||||
Run the latest version of the ELK (Elasticseach, Logstash, Kibana) stack with Docker and Docker-compose.
|
Run the latest version of the ELK (Elasticseach, Logstash, Kibana) stack with Docker and Docker-compose.
|
||||||
|
|
||||||
**Note**: This version has [X-Pack support](https://www.elastic.co/products/x-pack).
|
|
||||||
|
|
||||||
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:
|
||||||
@@ -14,6 +12,11 @@ Based on the official images:
|
|||||||
* [logstash](https://registry.hub.docker.com/_/logstash/)
|
* [logstash](https://registry.hub.docker.com/_/logstash/)
|
||||||
* [kibana](https://registry.hub.docker.com/_/kibana/)
|
* [kibana](https://registry.hub.docker.com/_/kibana/)
|
||||||
|
|
||||||
|
**Note**: Other branches in this project are available:
|
||||||
|
|
||||||
|
* ELK 5 with X-Pack support: https://github.com/deviantony/docker-elk/tree/x-pack
|
||||||
|
* ELK 5 in Vagrant: https://github.com/deviantony/docker-elk/tree/vagrant
|
||||||
|
|
||||||
# Requirements
|
# Requirements
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|||||||
@@ -2,6 +2,4 @@ FROM elasticsearch:5
|
|||||||
|
|
||||||
ENV ES_JAVA_OPTS="-Des.path.conf=/etc/elasticsearch"
|
ENV ES_JAVA_OPTS="-Des.path.conf=/etc/elasticsearch"
|
||||||
|
|
||||||
RUN elasticsearch-plugin install --batch x-pack
|
|
||||||
|
|
||||||
CMD ["-E", "network.host=0.0.0.0", "-E", "discovery.zen.minimum_master_nodes=1"]
|
CMD ["-E", "network.host=0.0.0.0", "-E", "discovery.zen.minimum_master_nodes=1"]
|
||||||
|
|||||||
@@ -5,6 +5,4 @@ RUN apt-get update && apt-get install -y netcat bzip2
|
|||||||
COPY entrypoint.sh /tmp/entrypoint.sh
|
COPY entrypoint.sh /tmp/entrypoint.sh
|
||||||
RUN chmod +x /tmp/entrypoint.sh
|
RUN chmod +x /tmp/entrypoint.sh
|
||||||
|
|
||||||
RUN kibana-plugin install x-pack
|
|
||||||
|
|
||||||
CMD ["/tmp/entrypoint.sh"]
|
CMD ["/tmp/entrypoint.sh"]
|
||||||
|
|||||||
@@ -9,7 +9,5 @@ input {
|
|||||||
output {
|
output {
|
||||||
elasticsearch {
|
elasticsearch {
|
||||||
hosts => "elasticsearch:9200"
|
hosts => "elasticsearch:9200"
|
||||||
user => "elastic"
|
|
||||||
password => "changeme"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user