Skip to content

Docker Save | Load

Save the Docker image as a tar file:

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

Then copy your image and load the image:

Bash
docker load -i <path to image tar file>

or

Bash
docker load < sometar.tar
Back to top