Commit a13c2e33 authored by Antoine Cotten's avatar Antoine Cotten

Reference wiki page for ES cluster scale out

parent 61c0321e
......@@ -127,8 +127,7 @@ logstash:
- elasticsearch
```
In the above example the folder `logstash/config` is mapped onto the container `/usr/share/logstash/config` so you
can create more than one file in that folder if you'd like to. However, you must be aware that config files will be read from the directory in alphabetical order, and that Logstash will be expecting a [`log4j2.properties`](https://github.com/elastic/logstash-docker/tree/master/build/logstash/config) file for its own logging.
In the above example the folder `logstash/config` is mapped onto the container `/usr/share/logstash/config` so you can create more than one file in that folder if you'd like to. However, you must be aware that config files will be read from the directory in alphabetical order, and that Logstash will be expecting a [`log4j2.properties`](https://github.com/elastic/logstash-docker/tree/master/build/logstash/config) file for its own logging.
## How can I specify the amount of memory used by Logstash?
......@@ -217,6 +216,10 @@ elasticsearch:
- docker_elk
```
## How can I scale up the Elasticsearch cluster?
Follow the instructions from the Wiki: [Scaling up Elasticsearch](https://github.com/deviantony/docker-elk/wiki/Elasticsearch-cluster)
# Storage
## How can I store Elasticsearch data?
......
......@@ -4,6 +4,8 @@ FROM docker.elastic.co/elasticsearch/elasticsearch:5.2.1
COPY config/ config/
COPY bin/ bin/
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
RUN elasticsearch-plugin install --batch com.floragunn:search-guard-5:5.2.1-11 \
&& chmod +x \
plugins/search-guard-5/tools/hash.sh \
......
# https://github.com/elastic/kibana-docker
FROM docker.elastic.co/kibana/kibana:5.2.1
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>
RUN kibana-plugin install https://github.com/floragunncom/search-guard-kibana-plugin/releases/download/v5.2.1-1/searchguard-kibana-5.2.1-1.zip
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