Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 351 Bytes

docker.md

File metadata and controls

17 lines (11 loc) · 351 Bytes

Docker Commands

The best cheat sheet of docker is at this.

Save , Load | Copy docker images to other host

Save the Docker image as a tar file:

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

Load the image into Docker:

docker load -i <path to image tar file>