You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
592 B
YAML
25 lines
592 B
YAML
services:
|
|
es:
|
|
container_name: es
|
|
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.3
|
|
volumes:
|
|
- esdata01:/usr/share/elasticsearch/data
|
|
ports:
|
|
- 9200:9200
|
|
environment:
|
|
- node.name=es
|
|
- ELASTIC_PASSWORD=llama_index
|
|
- bootstrap.memory_lock=false
|
|
- discovery.type=single-node
|
|
- xpack.security.enabled=true
|
|
- xpack.security.http.ssl.enabled=false
|
|
- xpack.security.transport.ssl.enabled=false
|
|
ulimits:
|
|
memlock:
|
|
soft: -1
|
|
hard: -1
|
|
restart: always
|
|
volumes:
|
|
esdata01:
|
|
driver: local
|