Transfer docker image from one host to the other
Assuming we want to transfer the following image:
# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
debian buster ee11c54e6bb7 8 months ago 114MB
Export it using
# docker save debian:buster > debian-buster.tar
Transfer the tarball and import it on the destination host using
# docker load < debian-buster.tar