forked from deviantony/docker-elk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbase.yml
43 lines (43 loc) · 1.12 KB
/
base.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
version: '2'
services:
elasticsearch:
build:
context: ./elasticsearch
volumes:
- ./elasticsearch/config/logging.yml:/usr/share/elasticsearch/config/logging.yml:ro
mem_limit: ${ES_MEM_LIMIT}
networks:
- elk
environment:
ES_HEAP_SIZE: ${ES_HEAP_SIZE}
MAX_LOCKED_MEMORY: unlimited
MAX_OPEN_FILES: 131070
ulimits:
memlock: 9223372036854775807 #2^63 - 1 as unlimited
logstash-indexer:
image: logstash:${LOGSTASH_VERSION}
command: logstash -w 8 -b 250 -f /etc/logstash.conf
mem_limit: ${LS_INDEXER_MEM_LIMIT}
networks:
- elk
logstash-shipper:
image: logstash:${LOGSTASH_VERSION}
command: logstash -w 8 -b 250 -f /etc/logstash.conf
ports:
- "${LOGSTASH_SHIPPER_TCP_PORT}:9500"
- "${LOGSTASH_SHIPPER_UDP_PORT}:9600/udp"
mem_limit: ${LS_SHIPPER_MEM_LIMIT}
networks:
- elk
kibana:
build:
context: ./kibana
volumes:
- ./kibana/config/:/opt/kibana/config/:ro
ports:
- "${KIBANA_PORT}:5601"
mem_limit: ${KIBANA_MEM_LIMIT}
networks:
- elk
environment:
ES_HOST: elasticsearch