forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
latest.yml
33 lines (30 loc) · 935 Bytes
/
latest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This is the latest released environment.
version: '2.3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9200"]
retries: 300
interval: 1s
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- "network.host="
- "transport.host=127.0.0.1"
- "http.host=0.0.0.0"
- "xpack.security.enabled=false"
logstash:
image: docker.elastic.co/logstash/logstash:6.6.0
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9600/_node/stats"]
retries: 300
interval: 1s
volumes:
- ./docker/logstash/pipeline:/usr/share/logstash/pipeline:ro
- ./docker/logstash/pki:/etc/pki:ro
kibana:
image: docker.elastic.co/kibana/kibana:6.6.0
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5601"]
retries: 300
interval: 1s