-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (33 loc) Β· 914 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (33 loc) Β· 914 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
version: '3'
services:
es:
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.4
environment:
- node.name=es
- discovery.type=single-node
- discovery.seed_hosts=es
- ELASTIC_PASSWORD=bombombom
- xpack.security.enabled=false
- xpack.security.http.ssl.enabled=false
- xpack.security.http.ssl.verification_mode=certificate
- xpack.security.transport.ssl.enabled=false
- xpack.security.transport.ssl.verification_mode=certificate
- xpack.license.self_generated.type=basic
volumes:
- es-data:/usr/share/es/data
- certs:/usr/share/elasticsearch/config/certs
ports:
- 9200:9200
kibana:
image: docker.elastic.co/kibana/kibana:8.13.4
environment:
- ELASTICSEARCH_HOSTS=http://es:9200
ports:
- 5601:5601
depends_on:
- es
volumes:
certs:
driver: local
es-data:
driver: local