Created
September 18, 2017 11:45
-
-
Save sscarduzio/bb0e5e554c089c09c68f49d345bd6700 to your computer and use it in GitHub Desktop.
Try XPACK with kibana
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.0" | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.0 | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
environment: | |
- discovery.type single-node | |
volumes: | |
- esdata1:/tmp | |
networks: | |
- docker_elk | |
kibana: | |
image: docker.elastic.co/kibana/kibana:5.6.0 | |
ports: | |
- "5601:5601" | |
links: | |
- elasticsearch | |
networks: | |
- docker_elk | |
networks: | |
docker_elk: | |
driver: bridge | |
volumes: | |
esdata1: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment