Update to ELK 6.6.1 (#368)
This commit is contained in:
parent
1ab56c6a17
commit
366e2bc5a2
|
@ -1,7 +1,7 @@
|
||||||
# Elastic stack (ELK) on Docker
|
# Elastic stack (ELK) on Docker
|
||||||
|
|
||||||
[](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)
|
||||||
[](https://github.com/deviantony/docker-elk/issues/362)
|
[](https://github.com/deviantony/docker-elk/issues/367)
|
||||||
[](https://travis-ci.org/deviantony/docker-elk)
|
[](https://travis-ci.org/deviantony/docker-elk)
|
||||||
|
|
||||||
Run the latest version of the [Elastic stack](https://www.elastic.co/elk-stack) with Docker and Docker Compose.
|
Run the latest version of the [Elastic stack](https://www.elastic.co/elk-stack) with Docker and Docker Compose.
|
||||||
|
@ -127,7 +127,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: 6.6.0' \
|
-H 'kbn-version: 6.6.1' \
|
||||||
-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-oss:6.6.0
|
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.6.1
|
||||||
ports:
|
ports:
|
||||||
- "9200:9200"
|
- "9200:9200"
|
||||||
- "9300:9300"
|
- "9300:9300"
|
||||||
|
@ -19,7 +19,7 @@ services:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
|
|
||||||
logstash:
|
logstash:
|
||||||
image: docker.elastic.co/logstash/logstash-oss:6.6.0
|
image: docker.elastic.co/logstash/logstash-oss:6.6.1
|
||||||
ports:
|
ports:
|
||||||
- "5000:5000"
|
- "5000:5000"
|
||||||
- "9600:9600"
|
- "9600:9600"
|
||||||
|
@ -37,7 +37,7 @@ services:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
|
|
||||||
kibana:
|
kibana:
|
||||||
image: docker.elastic.co/kibana/kibana-oss:6.6.0
|
image: docker.elastic.co/kibana/kibana-oss:6.6.1
|
||||||
ports:
|
ports:
|
||||||
- "5601:5601"
|
- "5601:5601"
|
||||||
configs:
|
configs:
|
||||||
|
|
Loading…
Reference in New Issue