Copy and Import Docker Images using docker save and docker load command

1. Save docker image as a tar file:

docker save -o tar_filename image_name

2. Copy the tar file to new host and import the image from tar file:

docker load -i tar_filename