Created
March 2, 2017 13:26
-
-
Save bbqtd/0fc2ae5f1087d692c0c1d70493a86ef9 to your computer and use it in GitHub Desktop.
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
docker network create -d bridge mynet | |
docker run --rm --name elastic --net mynet -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" docker.elastic.co/elasticsearch/elasticsearch:5.2.2 | |
docker run --rm --name kibana --net mynet -p 5601:5601 -e ELASTICSEARCH_URL=http://elastic:9200 docker.elastic.co/kibana/kibana:5.2.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment