Skip to content

Instantly share code, notes, and snippets.

@philipz
Created April 25, 2019 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philipz/06c47ac9b46fa370bef619cfd9d75570 to your computer and use it in GitHub Desktop.
Save philipz/06c47ac9b46fa370bef619cfd9d75570 to your computer and use it in GitHub Desktop.
Docker Save/Load Tgz
#for not running docker, use save:
docker save <dockernameortag> | gzip > mycontainer.tgz

#for running or paused docker, use export:
docker export <dockernameortag> | gzip > mycontainer.tgz

#load
gunzip -c mycontainer.tgz | docker load
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment