forked from fpalladoro/docker-elastic-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.yml
More file actions
43 lines (35 loc) · 718 Bytes
/
Copy pathstack.yml
File metadata and controls
43 lines (35 loc) · 718 Bytes
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
34
35
36
37
38
39
40
41
42
43
version: "3"
services:
elasticsearch:
image: elasticsearch
ports:
- "9200"
networks:
- elastic
environment:
- ES_JAVA_OPTS=-Xms512m -Xmx512m
volumes:
- esdata:/usr/share/elasticsearch/data
kibana:
image: kibana
networks:
- elastic
logstash:
image: docker.elastic.co/logstash/logstash:5.3.0
ports:
- "5043"
networks:
- elastic
metricbeat:
image: athieriot/metricbeat
networks:
- elastic
volumes:
- /proc:/hostfs/proc:ro
- /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro
- /:/hostfs:ro
- ./metricbeat.yml:/metricbeat/metricbeat.yml
networks:
elastic:
volumes:
esdata: