Created
December 25, 2023 07:16
-
-
Save lamoboos223/5109c021ad9baa258fdaefb975797651 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 pull docker.elastic.co/elasticsearch/elasticsearch:7.17.15 | |
docker pull docker.elastic.co/kibana/kibana:7.17.15 | |
docker run -d --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.17.15 | |
docker run -d --name kibana --link elasticsearch:elasticsearch -p 5601:5601 docker.elastic.co/kibana/kibana:7.17.15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment