Skip to content

Instantly share code, notes, and snippets.

@lamoboos223
Created December 25, 2023 07:16
Show Gist options
  • Save lamoboos223/5109c021ad9baa258fdaefb975797651 to your computer and use it in GitHub Desktop.
Save lamoboos223/5109c021ad9baa258fdaefb975797651 to your computer and use it in GitHub Desktop.
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