Save your docker image as a tar file:
docker save -o <path for generated tar file> <image name>
After that copy your image to a new system with regular file transfer tools such as cp or scp. Also you will have to load the image into Docker:
docker load -i <path to image tar file>
I hope it would help you resolve your query.