Skip to content

Instantly share code, notes, and snippets.

@bashkirtsevich
Created May 28, 2020 13:09
Show Gist options
  • Save bashkirtsevich/abd46319bf9ffe09c04ee52e25f04c7b to your computer and use it in GitHub Desktop.
Save bashkirtsevich/abd46319bf9ffe09c04ee52e25f04c7b to your computer and use it in GitHub Desktop.
Docker save/load tgz image
docker image save redis | gzip > redis.tgz
docker image save rabbitmq | gzip > rabbitmq.tgz
gunzip -c rabbitmq.tgz | docker load
gunzip -c redis.tgz | docker load
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment