Skip to content

Instantly share code, notes, and snippets.

@bashkirtsevich
Last active August 7, 2018 16:20
Show Gist options
  • Select an option

  • Save bashkirtsevich/e1f93419720979e96f5908caea0d1ae6 to your computer and use it in GitHub Desktop.

Select an option

Save bashkirtsevich/e1f93419720979e96f5908caea0d1ae6 to your computer and use it in GitHub Desktop.
Compress docker image to tgz
docker save $(docker images -q) | gzip -c > all_images.tgz
docker save image_name | gzip -c > image_name.tar.gz
gunzip -c image_name.tgz | docker load
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment