Created
September 13, 2016 12:15
-
-
Save erangaeb/bde49df5988ec796a5c0c1ac812b0609 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # you can compress image as tar file and transfer it | |
| docker save -o <saving name> <image id> | |
| docker save -o db.tar e0d9768dfdbf | |
| # load saved image(compressed file) in to docker | |
| docker load -i <saved file> | |
| docker load -i db.tar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment