-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (54 loc) · 1.74 KB
/
docker-compose.yml
File metadata and controls
57 lines (54 loc) · 1.74 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.14.3
container_name: elasticsearch
environment:
- discovery.type=single-node
- xpack.security.enabled=false
- ES_JAVA_OPTS=-Xms1g -Xmx1g
ports:
- "127.0.0.1:9200:9200"
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://localhost:9200 >/dev/null"]
interval: 10s
timeout: 5s
retries: 30
logstash:
image: docker.elastic.co/logstash/logstash:8.14.3
container_name: logstash
depends_on:
elasticsearch:
condition: service_healthy
ports:
- "127.0.0.1:9999:9999"
- "127.0.0.1:9999:9999/udp"
- "127.0.0.1:9600:9600"
volumes:
- ./logstash.conf:/usr/share/logstash/pipeline/logstash.conf:ro
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://localhost:9600 >/dev/null"]
interval: 10s
timeout: 5s
retries: 30
kibana:
image: docker.elastic.co/kibana/kibana:8.14.3
container_name: kibana
depends_on:
elasticsearch:
condition: service_healthy
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
volumes:
- kibana-data:/usr/share/kibana/data
ports:
- "127.0.0.1:5601:5601"
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://localhost:5601 >/dev/null"]
interval: 10s
timeout: 5s
retries: 30
volumes:
elasticsearch-data:
kibana-data: