forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlatest.yml
29 lines (26 loc) · 786 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
# This is the latest stable release environment.
version: '2.1'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.3.0
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9200"]
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:
build:
context: docker/logstash
dockerfile: Dockerfile
args:
ELASTIC_VERSION: 5.3.0
DOWNLOAD_URL: https://artifacts.elastic.co/downloads
environment:
- ES_HOST=elasticsearch
kibana:
image: docker.elastic.co/kibana/kibana:5.3.0
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5601"]