Release 5.5.3

Closes #165
This commit is contained in:
Antoine Cotten 2017-08-28 10:24:11 +02:00
parent 41dc16c734
commit 725bc397d9
No known key found for this signature in database
GPG Key ID: EA06C9A94E2B3EA0
4 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# Docker ELK stack
[![Join the chat at https://gitter.im/deviantony/docker-elk](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Elastic Stack version](https://img.shields.io/badge/ELK-5.5.1-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/158)
[![Join the chat at https://gitter.im/deviantony/docker-elk](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Elastic Stack version](https://img.shields.io/badge/ELK-5.5.3-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/165)
Run the latest version of the ELK (Elasticsearch, Logstash, Kibana) stack with Docker and Docker Compose.
@ -124,7 +124,7 @@ $ curl -XPUT -D- 'http://localhost:9200/.kibana/index-pattern/logstash-*' \
This command will mark the Logstash index pattern as the default index pattern:
```bash
$ curl -XPUT -D- 'http://localhost:9200/.kibana/config/5.5.1' \
$ curl -XPUT -D- 'http://localhost:9200/.kibana/config/5.5.3' \
-H 'Content-Type: application/json' \
-d '{"defaultIndex": "logstash-*"}'
```

View File

@ -1,5 +1,5 @@
# https://github.com/elastic/elasticsearch-docker
FROM docker.elastic.co/elasticsearch/elasticsearch:5.5.1
FROM docker.elastic.co/elasticsearch/elasticsearch:5.5.3
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu

View File

@ -1,5 +1,5 @@
# https://github.com/elastic/kibana-docker
FROM docker.elastic.co/kibana/kibana:5.5.1
FROM docker.elastic.co/kibana/kibana:5.5.3
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>

View File

@ -1,5 +1,5 @@
# https://github.com/elastic/logstash-docker
FROM docker.elastic.co/logstash/logstash:5.5.1
FROM docker.elastic.co/logstash/logstash:5.5.3
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json