Difference between revisions of "Docker: ElasticSearch"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) (Created page with "docker-compose.yml<syntaxhighlight lang="docker"> version: '2.2' services: es01: image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0 container_name: es01...") Tag: visualeditor |
(No difference)
|
Revision as of 08:46, 15 April 2019
docker-compose.yml
version: '2.2'
services:
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0
container_name: es01
environment:
- node.name=es01
- cluster.initial_master_nodes=es01,es02
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- esdata01:/usr/share/elasticsearch/data
ports:
- 9200:9200
networks:
- esnet
es02:
image: docker.elastic.co/elasticsearch/elasticsearch:7.0.0
container_name: es02
environment:
- node.name=es02
- discovery.seed_hosts=es01
- cluster.initial_master_nodes=es01,es02
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- esdata02:/usr/share/elasticsearch/data
networks:
- esnet
volumes:
esdata01:
driver: local
esdata02:
driver: local
networks:
esnet:
Bring the cluster up & down
docker-compose up
docker-compose down
Inspect status of cluster
curl http://127.0.0.1:9200/_cat/health