Update to v7.9.2

Closes #539
This commit is contained in:
Antoine Cotten 2020-10-09 11:57:40 +02:00
parent fd704c4b7c
commit 081589dd18
No known key found for this signature in database
GPG Key ID: 94637E68D4A79DD0
3 changed files with 6 additions and 6 deletions

2
.env
View File

@ -1 +1 @@
ELK_VERSION=7.9.1 ELK_VERSION=7.9.2

View File

@ -1,7 +1,7 @@
# Elastic stack (ELK) on Docker # Elastic stack (ELK) on Docker
[![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) [![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-7.9.1-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/529) [![Elastic Stack version](https://img.shields.io/badge/ELK-7.9.2-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/539)
[![Build Status](https://api.travis-ci.org/deviantony/docker-elk.svg?branch=master)](https://travis-ci.org/deviantony/docker-elk) [![Build Status](https://api.travis-ci.org/deviantony/docker-elk.svg?branch=master)](https://travis-ci.org/deviantony/docker-elk)
Run the latest version of the [Elastic stack][elk-stack] with Docker and Docker Compose. Run the latest version of the [Elastic stack][elk-stack] with Docker and Docker Compose.
@ -239,7 +239,7 @@ Create an index pattern via the Kibana API:
```console ```console
$ curl -XPOST -D- 'http://localhost:5601/api/saved_objects/index-pattern' \ $ curl -XPOST -D- 'http://localhost:5601/api/saved_objects/index-pattern' \
-H 'Content-Type: application/json' \ -H 'Content-Type: application/json' \
-H 'kbn-version: 7.9.1' \ -H 'kbn-version: 7.9.2' \
-u elastic:<your generated elastic password> \ -u elastic:<your generated elastic password> \
-d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}' -d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}'
``` ```

View File

@ -3,7 +3,7 @@ version: '3.3'
services: services:
elasticsearch: elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.1 image: docker.elastic.co/elasticsearch/elasticsearch:7.9.2
ports: ports:
- "9200:9200" - "9200:9200"
- "9300:9300" - "9300:9300"
@ -23,7 +23,7 @@ services:
replicas: 1 replicas: 1
logstash: logstash:
image: docker.elastic.co/logstash/logstash:7.9.1 image: docker.elastic.co/logstash/logstash:7.9.2
ports: ports:
- "5000:5000" - "5000:5000"
- "9600:9600" - "9600:9600"
@ -41,7 +41,7 @@ services:
replicas: 1 replicas: 1
kibana: kibana:
image: docker.elastic.co/kibana/kibana:7.9.1 image: docker.elastic.co/kibana/kibana:7.9.2
ports: ports:
- "5601:5601" - "5601:5601"
configs: configs: