Commit dc82da14 authored by tony's avatar tony

Added TCP transport port mapping.

parent bad73697
...@@ -60,6 +60,7 @@ You can also access: ...@@ -60,6 +60,7 @@ You can also access:
By default, the stack exposes the following ports: By default, the stack exposes the following ports:
* 5000: Logstash TCP input. * 5000: Logstash TCP input.
* 9200: Elasticsearch HTTP * 9200: Elasticsearch HTTP
* 9300: Elasticsearch TCP transport
* 5601: Kibana * 5601: Kibana
*WARNING*: If you're using *boot2docker*, you must access it via the *boot2docker* IP address instead of *localhost*. *WARNING*: If you're using *boot2docker*, you must access it via the *boot2docker* IP address instead of *localhost*.
......
...@@ -3,6 +3,7 @@ elasticsearch: ...@@ -3,6 +3,7 @@ elasticsearch:
command: elasticsearch -Des.network.host=0.0.0.0 command: elasticsearch -Des.network.host=0.0.0.0
ports: ports:
- "9200:9200" - "9200:9200"
- "9300:9300"
logstash: logstash:
image: logstash:latest image: logstash:latest
command: logstash -f /etc/logstash/conf.d/logstash.conf command: logstash -f /etc/logstash/conf.d/logstash.conf
......
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