Skip to content

Instantly share code, notes, and snippets.

@ambud
Created February 21, 2017 22:02
Show Gist options
  • Select an option

  • Save ambud/32efe33ba8e22200877892db9641d135 to your computer and use it in GitHub Desktop.

Select an option

Save ambud/32efe33ba8e22200877892db9641d135 to your computer and use it in GitHub Desktop.
Docker Compose - Elasticsearch Kibana
version: '2'
services:
elasticsearch:
image: elasticsearch
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: kibana
ports:
- "5601:5601"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment