Created
February 17, 2019 13:02
-
-
Save naoki-sawada/469c475114de934f467bbc8c7ed9df10 to your computer and use it in GitHub Desktop.
Example for Elasticsearch and Kibana use with docker-compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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