This commit is contained in:
Stefan Hardegger
2025-09-21 16:34:28 +02:00
parent 1247a3420e
commit bfb68e81a8

View File

@@ -83,12 +83,16 @@ services:
- node.name=opensearch-node - node.name=opensearch-node
- discovery.type=single-node - discovery.type=single-node
- bootstrap.memory_lock=false - bootstrap.memory_lock=false
- "OPENSEARCH_JAVA_OPTS=-Xms256m -Xmx512m" - "OPENSEARCH_JAVA_OPTS=-Xms256m -Xmx512m -Dlog4j2.formatMsgNoLookups=true --add-opens=java.base/java.lang=ALL-UNNAMED"
- "DISABLE_INSTALL_DEMO_CONFIG=true" - "DISABLE_INSTALL_DEMO_CONFIG=true"
- "DISABLE_SECURITY_PLUGIN=true" - "DISABLE_SECURITY_PLUGIN=true"
- "DISABLE_PERFORMANCE_ANALYZER_AGENT_CLI=true" - "DISABLE_PERFORMANCE_ANALYZER_AGENT_CLI=true"
- "logger.org.opensearch.transport=WARN" - "logger.root=INFO"
- "logger.org.opensearch.cluster.service=WARN" - "logger.org.opensearch=DEBUG"
- "action.destructive_requires_name=false"
- "OPENSEARCH_INITIAL_ADMIN_PASSWORD=admin123"
- "cluster.initial_cluster_manager_nodes=opensearch-node"
- "network.host=0.0.0.0"
ulimits: ulimits:
memlock: memlock:
soft: -1 soft: -1
@@ -98,6 +102,7 @@ services:
hard: 65536 hard: 65536
volumes: volumes:
- opensearch_data:/usr/share/opensearch/data - opensearch_data:/usr/share/opensearch/data
user: "1000:1000"
networks: networks:
- storycove-network - storycove-network
restart: unless-stopped restart: unless-stopped