-
docker pull <image>
docker pull hello-world -
docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
hello-world latest d2c94e258dcb 15 months ago 13.3kB -
docker save -o <output path and filename> <docker image name:tag>
docker save -o C:\Temp\hello-world-containerimage.tar hello-world:latest -
docker load -i <path and filename>
docker load -i C:\Transfer\hello-world-containerimage.tar