I'm new to Docker, so please allow me to describe the steps that I did. I'm using Docker (not Docker toolbox) on OS X. I built the image from Dockerfile using the following command sudo docker build -t myImage .
sudo docker build -t myImage .
Docker confirmed that building was successful. Successfully built 7240e.....
Successfully built 7240e.....
However, I can't find the image anywhere. I looked at this question, but the answer is for Docker toolbox, and I don't have a folder /Users/<username>/.docker as suggested by the accepted answer.
/Users/<username>/.docker
You would be able to see your docker images by the below command:
docker images
And to check which all containers are running in docker:
docker ps -a
2.1m questions
2.1m answers
60 comments
57.0k users