Last active
April 16, 2019 07:28
-
-
Save gowthamgts/095b77990460110705cc0d9a281268db to your computer and use it in GitHub Desktop.
Elastic search with kibana docker-compose.yml
This file contains hidden or 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.0" | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:6.0.1 | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
networks: | |
- docker_elk | |
environment: | |
- discovery.type=single-node | |
container_name: es | |
kibana: | |
image: docker.elastic.co/kibana/kibana:6.0.1 | |
ports: | |
- "5601:5601" | |
links: | |
- elasticsearch | |
depends_on: | |
- elasticsearch | |
networks: | |
- docker_elk | |
container_name: kibana | |
networks: | |
docker_elk: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment