Release 5.5.1

Closes #158
parent 149cdf26
# Docker ELK stack # 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.0-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/146) [![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)
Run the latest version of the ELK (Elasticsearch, Logstash, Kibana) stack with Docker and Docker Compose. Run the latest version of the ELK (Elasticsearch, Logstash, Kibana) stack with Docker and Docker Compose.
...@@ -127,7 +127,7 @@ $ curl -XPUT -D- 'http://localhost:9200/.kibana/index-pattern/logstash-*' \ ...@@ -127,7 +127,7 @@ $ curl -XPUT -D- 'http://localhost:9200/.kibana/index-pattern/logstash-*' \
This command will mark the Logstash index pattern as the default index pattern: This command will mark the Logstash index pattern as the default index pattern:
```bash ```bash
$ curl -XPUT -D- 'http://localhost:9200/.kibana/config/5.5.0' \ $ curl -XPUT -D- 'http://localhost:9200/.kibana/config/5.5.1' \
-H 'Content-Type: application/json' \ -H 'Content-Type: application/json' \
-u kibana:changeme \ -u kibana:changeme \
-d '{"defaultIndex": "logstash-*"}' -d '{"defaultIndex": "logstash-*"}'
......
# https://github.com/elastic/elasticsearch-docker # https://github.com/elastic/elasticsearch-docker
FROM docker.elastic.co/elasticsearch/elasticsearch:5.5.0 FROM docker.elastic.co/elasticsearch/elasticsearch:5.5.1
# Add your elasticsearch plugins setup here # Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu # Example: RUN elasticsearch-plugin install analysis-icu
# https://github.com/elastic/kibana-docker # https://github.com/elastic/kibana-docker
FROM docker.elastic.co/kibana/kibana:5.5.0 FROM docker.elastic.co/kibana/kibana:5.5.1
# Add your kibana plugins setup here # Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url> # Example: RUN kibana-plugin install <name|url>
# https://github.com/elastic/logstash-docker # https://github.com/elastic/logstash-docker
FROM docker.elastic.co/logstash/logstash:5.5.0 FROM docker.elastic.co/logstash/logstash:5.5.1
# Add your logstash plugins setup here # Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json # Example: RUN logstash-plugin install logstash-filter-json
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