Hello, I am pretty new open distro and elastic in general. I was trying to setup a local dev environment using docker.
I was managed to pull the elasticsearch and kibana image using docker.
docker pull amazon/opendistro-for-elasticsearch:1.2.0
docker pull amazon/opendistro-for-elasticsearch-kibana:1.2.0
But I am trying to figure out how to start them. As per documentation I can start the elasticsearch using below commands
docker run -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" amazon/opendistro-for-elasticsearch:1.2.0
That works fine when I fire a curl command to verify but how to check in browser
localhost:9200/
doesn’t work.
Also how to start the kibana? I didn’t find any specific command/instructions to do so.
Please assist.