Skip to content

Commit

Permalink
Release 5.5.0
Browse files Browse the repository at this point in the history
Closes #146
  • Loading branch information
antoineco committed Jul 10, 2017
1 parent ba1acc1 commit c165422
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.4.3-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/142)
[![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.0-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/146)

Run the latest version of the ELK (Elasticsearch, Logstash, Kibana) stack with Docker and Docker Compose.

Expand Down Expand Up @@ -124,7 +124,7 @@ $ curl -XPUT -D- 'http:https://localhost:9200/.kibana/index-pattern/logstash-*' \
This command will mark the Logstash index pattern as the default index pattern:

```bash
$ curl -XPUT -D- 'http:https://localhost:9200/.kibana/config/5.4.3' \
$ curl -XPUT -D- 'http:https://localhost:9200/.kibana/config/5.5.0' \
-H 'Content-Type: application/json' \
-d '{"defaultIndex": "logstash-*"}'
```
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://github.com/elastic/elasticsearch-docker
FROM docker.elastic.co/elasticsearch/elasticsearch:5.4.3
FROM docker.elastic.co/elasticsearch/elasticsearch:5.5.0

# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
2 changes: 1 addition & 1 deletion kibana/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://github.com/elastic/kibana-docker
FROM docker.elastic.co/kibana/kibana:5.4.3
FROM docker.elastic.co/kibana/kibana:5.5.0

# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>
2 changes: 1 addition & 1 deletion logstash/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://github.com/elastic/logstash-docker
FROM docker.elastic.co/logstash/logstash:5.4.3
FROM docker.elastic.co/logstash/logstash:5.5.0

# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json

0 comments on commit c165422

Please sign in to comment.