barge/compose-files/elasticsearch.yml

15 lines
402 B
YAML
Raw Normal View History

2021-04-09 11:44:50 +02:00
version: '3'
services:
elasticsearch:
2022-11-29 12:36:36 +01:00
image: elasticsearch:${ELASTICSEARCH_VERSION:-latest}
2021-04-09 11:44:50 +02:00
networks:
backend:
ipv4_address: 172.15.0.6
environment:
ES_JAVA_OPTS: "-Xms512m -Xmx512m"
MAX_MAP_COUNT: "64000"
2021-11-19 12:55:06 +01:00
discovery.type: "single-node"
2022-12-10 08:52:36 +01:00
ELASTIC_PASSWORD: "changeme"
xpack.security.enabled: "false"
xpack.security.http.ssl.enabled: "false"