Created
November 30, 2015 02:42
-
-
Save bt5e/f9bd30d2bc02e516b0ae to your computer and use it in GitHub Desktop.
docker compose elasticsearch & kibana
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
elasticsearch: | |
image: elasticsearch | |
ports: | |
- "9200:9200" | |
kibana: | |
image: kibana | |
links: | |
- elasticsearch | |
ports: | |
- "5601:5601" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment