Closed
Description
I was having trouble accessing the Docker image on my Mac as the port (27017) was not bound when I ran the command in the instructions:
docker run --name some-mongo -d mongo:tag
Suggest updating instructions to:
docker run -dp 27017:27017 --name some-mongo -d mongo:tag
With the updated code I could run mongosh
without the connection being refused