Created
September 27, 2016 07:19
-
-
Save shavo007/6a9a6cb2ab6667132b447072129570ef to your computer and use it in GitHub Desktop.
docker compose file provided by elastic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '2' | |
services: | |
kibana: | |
image: docker.elastic.co/kibana/kibana | |
links: | |
- elasticsearch | |
ports: | |
- 5601:5601 | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch | |
cap_add: | |
- IPC_LOCK | |
volumes: | |
- esdata1:/usr/share/elasticsearch/data | |
ports: | |
- 9200:9200 | |
volumes: | |
esdata1: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this work with the latest beta version of elasticsearch and kibana 5?