Update to v7.9.3 (#551)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
This commit is contained in:
parent
730ffa8de5
commit
6f6266a605
|
@ -1,6 +1,6 @@
|
||||||
# Elastic stack (ELK) on Docker
|
# Elastic stack (ELK) on Docker
|
||||||
|
|
||||||
[](https://www.elastic.co/blog/category/releases)
|
[](https://www.elastic.co/blog/category/releases)
|
||||||
[](https://github.com/deviantony/docker-elk/actions?query=workflow%3ACI+branch%3Amaster)
|
[](https://github.com/deviantony/docker-elk/actions?query=workflow%3ACI+branch%3Amaster)
|
||||||
[](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||
|
|
||||||
|
@ -257,7 +257,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.2' \
|
-H 'kbn-version: 7.9.3' \
|
||||||
-u elastic:<your generated elastic password> \
|
-u elastic:<your generated elastic password> \
|
||||||
-d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}'
|
-d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}'
|
||||||
```
|
```
|
||||||
|
|
|
@ -3,7 +3,7 @@ version: '3.3'
|
||||||
services:
|
services:
|
||||||
|
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.2
|
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.3
|
||||||
ports:
|
ports:
|
||||||
- "9200:9200"
|
- "9200:9200"
|
||||||
- "9300:9300"
|
- "9300:9300"
|
||||||
|
@ -25,7 +25,7 @@ services:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
|
|
||||||
logstash:
|
logstash:
|
||||||
image: docker.elastic.co/logstash/logstash:7.9.2
|
image: docker.elastic.co/logstash/logstash:7.9.3
|
||||||
ports:
|
ports:
|
||||||
- "5044:5044"
|
- "5044:5044"
|
||||||
- "5000:5000"
|
- "5000:5000"
|
||||||
|
@ -44,7 +44,7 @@ services:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
|
|
||||||
kibana:
|
kibana:
|
||||||
image: docker.elastic.co/kibana/kibana:7.9.2
|
image: docker.elastic.co/kibana/kibana:7.9.3
|
||||||
ports:
|
ports:
|
||||||
- "5601:5601"
|
- "5601:5601"
|
||||||
configs:
|
configs:
|
||||||
|
|
Loading…
Reference in New Issue