Skip to content

Docker Save | Load

Save the Docker image as a tar file:

Bash
docker save image_name:tag > some_name.tar
Bash
docker save busybox > busybox.tar

Then copy your image and load the image:

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

or

Bash
docker load < sometar.tar