Skip to content

Instantly share code, notes, and snippets.

@tosone
Created October 11, 2019 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tosone/381275bbd8e6a93c4b4b1d3027fc3382 to your computer and use it in GitHub Desktop.
Save tosone/381275bbd8e6a93c4b4b1d3027fc3382 to your computer and use it in GitHub Desktop.
[docker save] #docker
#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