How do I transfer a Docker image from one machine to another one without using a repository, no matter private or public?
I create my own image in VirtualBox, and wh
To save an image to any file path or shared NFS place see the following example.
Get the image id by doing:
sudo docker images
Say you have an image with id "matrix-data".
Save the image with id:
sudo docker save -o /home/matrix/matrix-data.tar matrix-data
Copy the image from the path to any host. Now import to your local Docker installation using:
sudo docker load -i