how to save docker image to another machine without repo code example
Example 1: how to save docker image to another machine without repo
docker save -o c:/myfile.tar centos:16
Example 2: save docker image from local repo
docker save -o <path for generated tar file> <image name>