Created
May 28, 2020 13:09
-
-
Save bashkirtsevich/abd46319bf9ffe09c04ee52e25f04c7b to your computer and use it in GitHub Desktop.
Docker save/load tgz image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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