Skip to content

Instantly share code, notes, and snippets.

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