Save the Docker image as a file
To save the Docker image as a tar file:
docker save -o <path/file.tar> <image name>
After you move the file to the new location you can load the image into Docker:
docker load -i <path/file.tar>
docker save -o <path/file.tar> <image name>
After you move the file to the new location you can load the image into Docker:
docker load -i <path/file.tar>
Comments
Post a Comment