Skip to content

Instantly share code, notes, and snippets.

@naoki-sawada
Created February 17, 2019 13:02
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 naoki-sawada/469c475114de934f467bbc8c7ed9df10 to your computer and use it in GitHub Desktop.
Save naoki-sawada/469c475114de934f467bbc8c7ed9df10 to your computer and use it in GitHub Desktop.
Example for Elasticsearch and Kibana use with docker-compose
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: docker.elastic.co/kibana/kibana:6.6.0
ports:
- "5601:5601"
links:
- "elasticsearch"
grafana:
image: grafana/grafana
ports:
- "3000:3000"
links:
- "elasticsearch"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment