This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Image Management ====== ===== Pull Image ===== <code bash> docker pull <image>:<tag> </code> ===== Export Image ===== <code bash> docker image save <image>:<tag> | gzip > image.tar.gz </code> ===== Import Image ===== <code bash> docker image load < iamge.tar.gz </code>