Summaries/Databases/ElasticSearch/ES_Docker.md

545 B

title updated created
ES_Docker 2021-05-04 14:58:11Z 2021-05-04 14:58:11Z

Setup ES with Docker

get ES Docker container and start

    docker pull elasticsearch:7.6.2    # lastest is not supported by ES
    docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:7.6.2    # start a singel node

Test if running correctly

    curl -I -XHEAD localhost:9200

Link to ES with Kibana