Digital Marketing

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>

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database