-
Notifications
You must be signed in to change notification settings - Fork 0
/
elk.yml
45 lines (43 loc) · 1006 Bytes
/
elk.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
34
35
36
37
38
39
40
41
42
43
44
45
version: "3.3"
services:
elasticsearch:
image: nagarindkx/elasticsearch-noxpack
environment:
- "XPACK_MONITORING_ENABLED=false"
- "XPACK_SECURITY_ENABLED=false"
ports:
- 9200:9200
volumes:
- elasticsearch-volume:/var/lib/elasticsearch
networks:
- elk
kibana:
image: nagarindkx/kibana-noxpack
depends_on:
- elasticsearch
environment:
- "XPACK_MONITORING_ENABLED=false"
- "XPACK_SECURITY_ENABLED=false"
ports:
- 5601:5601
networks:
- elk
logstash:
image: nagarindkx/logstash-noxpack
depends_on:
- elasticsearch
environment:
- "XPACK_MONITORING_ENABLED=false"
- "XPACK_SECURITY_ENABLED=false"
volumes:
- logstash-volume:/usr/share/logstash/data
ports:
- 5514:5514
networks:
- elk
networks:
elk:
driver: overlay
volumes:
elasticsearch-volume:
logstash-volume: