Save an image
image=IMAGENAME #docker save -o $image.tar $image docker save $image > $image.tar
then ship it to another docker host e.g.
rsync -avz --delete images.archives/ remoteuser@otherdockerhost:~/images.archives/
–or–
scp -r ~/images.archives remoteuser@otherdockerhost:~/
Load it on the other host e.g.
image=IMAGENAME docker load < $image.tar
Produce an archive from the container
docker export containername > containername.export.tar
Import back the container elsewhere
docker import - containername < containername.export.tar
https://tuhrig.de/difference-between-save-and-export-in-docker/