Skip to content

Commit

Permalink
Remove X-Pack support for master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
deviantony committed Oct 28, 2016
1 parent af9e335 commit 23d036d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

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.

Based on the official images:
Expand All @@ -14,6 +12,11 @@ Based on the official images:
* [logstash](https://registry.hub.docker.com/_/logstash/)
* [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

## Setup
Expand Down
2 changes: 0 additions & 2 deletions elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ FROM elasticsearch:5

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"]
2 changes: 0 additions & 2 deletions kibana/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@ RUN apt-get update && apt-get install -y netcat bzip2
COPY entrypoint.sh /tmp/entrypoint.sh
RUN chmod +x /tmp/entrypoint.sh

RUN kibana-plugin install x-pack

CMD ["/tmp/entrypoint.sh"]
2 changes: 0 additions & 2 deletions logstash/config/logstash.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,5 @@ input {
output {
elasticsearch {
hosts => "elasticsearch:9200"
user => "elastic"
password => "changeme"
}
}

0 comments on commit 23d036d

Please sign in to comment.