22 lines
493 B
YAML
22 lines
493 B
YAML
services:
|
|
opensearch:
|
|
build: .
|
|
container_name: akyldash-opensearch
|
|
environment:
|
|
discovery.type: single-node
|
|
bootstrap.memory_lock: "true"
|
|
DISABLE_SECURITY_PLUGIN: "true"
|
|
OPENSEARCH_JAVA_OPTS: -Xms8g -Xmx8g
|
|
mem_limit: 12g
|
|
ports:
|
|
- 127.0.0.1:9200:9200
|
|
ulimits:
|
|
memlock:
|
|
soft: -1
|
|
hard: -1
|
|
nofile:
|
|
soft: 65536
|
|
hard: 65536
|
|
volumes:
|
|
- ../../data/opensearch-node:/usr/share/opensearch/data
|