Skip to content

Instantly share code, notes, and snippets.

@shavo007
Created September 27, 2016 07:19
Show Gist options
  • Save shavo007/6a9a6cb2ab6667132b447072129570ef to your computer and use it in GitHub Desktop.
Save shavo007/6a9a6cb2ab6667132b447072129570ef to your computer and use it in GitHub Desktop.
docker compose file provided by elastic
---
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
@viztastic
Copy link

Does this work with the latest beta version of elasticsearch and kibana 5?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment