Answer: How to copy Docker images from one host to another without using a repository

icy1900

Roy

Posted on August 24, 2021

Answer: How to copy Docker images from one host to another without using a repository

You will need to save the Docker image as a tar file:

docker save -o <path for generated tar file> <image name&gt

Then copy your image to a new system with regular file transfer tools such as cp, scp, or rsync (preferred for big files). After that you…

πŸ’– πŸ’ͺ πŸ™… 🚩
icy1900
Roy

Posted on August 24, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related