how to load an configure image to another server in docker code example
Example 1: copy docker image from one machine to another
docker save -o <path for generated tar file> <image name>
Example 2: copy docker image from one machine to another
docker load -i <path to image tar file>