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 commandsudo docker build -t myImage .
Docker confirmed that building was successful.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.
docker images
. - jwodderdocker save
anddocker load
which allows you to save the image to a tar and load it again somewhere else. That way you have a tangeble actual image that you can move around with you from machine to machine. - OpenBSDNinja