From ef60a789981c32408816602ad99c92ab0b768143 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Sun, 16 Oct 2016 16:30:04 -0700 Subject: [PATCH] Pin version numbers used by ELK --- docs/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.html b/docs/index.html index 5391464d..d4ffd420 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2672,7 +2672,7 @@ What we will do: - Create the ElasticSearch service: ```bash - docker service create --network logging --name elasticsearch elasticsearch + docker service create --network logging --name elasticsearch elasticsearch:2.4 ``` ] @@ -2695,7 +2695,7 @@ What we will do: - Create the Kibana service: ```bash docker service create --network logging --name kibana --publish 5601:5601 \ - -e ELASTICSEARCH_URL=http://elasticsearch:9200 kibana + -e ELASTICSEARCH_URL=http://elasticsearch:9200 kibana:4.6 ``` ] @@ -2715,7 +2715,7 @@ What we will do: - Create the Logstash service: ```bash docker service create --network logging --name logstash -p 12201:12201/udp \ - logstash -e "$(cat ~/orchestration-workshop/elk/logstash.conf)" + logstash:2.4 -e "$(cat ~/orchestration-workshop/elk/logstash.conf)" ``` ]