mtfosbot/vendor/github.com/olivere/elastic/docker-compose.yml

55 lines
1.4 KiB
YAML
Raw Normal View History

2018-10-05 08:36:16 +00:00
version: '3'
services:
elasticsearch:
2018-11-16 03:10:19 +00:00
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.4.2
2018-10-05 08:36:16 +00:00
hostname: elasticsearch
environment:
- cluster.name=elasticsearch
- bootstrap.memory_lock=true
# - http.host=0.0.0.0
# - transport.host=127.0.0.1
# - network.host=_local_
- network.publish_host=127.0.0.1
- "ES_JAVA_OPTS=-Xms1g -Xmx1g"
ulimits:
nproc: 65536
nofile:
soft: 65536
hard: 65536
memlock:
soft: -1
hard: -1
# volumes:
# - ./data/elasticsearch:/usr/share/elasticsearch/data
ports:
- 9200:9200
platinum:
2018-11-16 03:10:19 +00:00
image: docker.elastic.co/elasticsearch/elasticsearch:6.4.2
2018-10-05 08:36:16 +00:00
hostname: elasticsearch-platinum
environment:
- cluster.name=platinum
- bootstrap.memory_lock=true
2018-11-16 03:10:19 +00:00
- xpack.license.self_generated.type=trial
- xpack.security.enabled=true
- xpack.watcher.enabled=true
2018-10-05 08:36:16 +00:00
# - http.host=0.0.0.0
# - transport.host=127.0.0.1
# - network.host=_local_
- http.port=9210
- network.publish_host=127.0.0.1
- "ES_JAVA_OPTS=-Xms1g -Xmx1g"
- ELASTIC_PASSWORD=elastic
ulimits:
nproc: 65536
nofile:
soft: 65536
hard: 65536
memlock:
soft: -1
hard: -1
# volumes:
# - ./data/elasticsearch-platinum:/usr/share/elasticsearch/data
ports:
- 9210:9210