Skip to content

Instantly share code, notes, and snippets.

@mengjiann
Created April 8, 2019 09:21
Show Gist options
  • Save mengjiann/52659e090caf61fcd32dcb32c7500718 to your computer and use it in GitHub Desktop.
Save mengjiann/52659e090caf61fcd32dcb32c7500718 to your computer and use it in GitHub Desktop.
Docker Image Export
# Docker’s commit command allows users to take a running container and save its current state as an image
docker commit ${container-id} ${image-name}
# Export the image as tar
docker save ${image-name} > ./{image-tar-name}.tar
# Load a tar image
docker load < ${image-tar-name}.tar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment