Elasticsearch in Go: A Developer's Guide

Alex_Rosenfeld

Thanks for this tutorial. I was running into errors running Elasticsearch with Docker. From the Elastic documentation (https://www.elastic.co/guid… I pulled a more recent version:

docker pull docker.elastic.co/elasticsearch/elasticsearch:7.14.1

Then I refactored run-elastic.sh to the following:

docker run -p 9200:9200 -p 9300:9300 -e “discovery.type=single-node” docker.elastic.co/elasticsearch/elasticsearch:7.14.1