From dc82da146b32fda6e4ebd2e409ac00851d1ad1d7 Mon Sep 17 00:00:00 2001 From: tony Date: Fri, 4 Dec 2015 09:26:33 +0100 Subject: [PATCH] Added TCP transport port mapping. --- README.md | 1 + docker-compose.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 06e2859..e2062d5 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ You can also access: By default, the stack exposes the following ports: * 5000: Logstash TCP input. * 9200: Elasticsearch HTTP +* 9300: Elasticsearch TCP transport * 5601: Kibana *WARNING*: If you're using *boot2docker*, you must access it via the *boot2docker* IP address instead of *localhost*. diff --git a/docker-compose.yml b/docker-compose.yml index 54e6311..fc766e8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,6 +3,7 @@ elasticsearch: command: elasticsearch -Des.network.host=0.0.0.0 ports: - "9200:9200" + - "9300:9300" logstash: image: logstash:latest command: logstash -f /etc/logstash/conf.d/logstash.conf