Skip to content

Instantly share code, notes, and snippets.

@sscarduzio
Created September 18, 2017 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sscarduzio/bb0e5e554c089c09c68f49d345bd6700 to your computer and use it in GitHub Desktop.
Save sscarduzio/bb0e5e554c089c09c68f49d345bd6700 to your computer and use it in GitHub Desktop.
Try XPACK with kibana
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