Last active
March 21, 2017 22:22
-
-
Save dliappis/52de1f4bb10fd23f5b91ea5fcb5d2560 to your computer and use it in GitHub Desktop.
Example Elastic Stack with Docker
This file contains 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