Created
May 19, 2020 19:10
-
-
Save erfelipe/a1e2b8539a096497c48104717b774107 to your computer and use it in GitHub Desktop.
Download e Start do Elasticsearch e Kibana #elasticsearch #kibana
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
#elasticsearch | |
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.7.0 | |
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.7.0 | |
#kibana | |
docker pull docker.elastic.co/kibana/kibana:7.7.0 | |
docker run --link YOUR_ELASTICSEARCH_CONTAINER_NAME_OR_ID:elasticsearch -p 5601:5601 docker.elastic.co/kibana/kibana:7.7.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment