Where are the docker images located once they are downloaded from docker hub in Mac OSX. For example if I run a command like:
docker run hello-world <
docker run hello-world
In my case, I want to locate the docker images and copy them to another location.
Use docker save to Save one or more images to a tar archive (streamed to STDOUT by default)
docker save
Link: https://docs.docker.com/engine/reference/commandline/save/