Docker copy images between hosts
Copying docker images (import/export) between hosts Sometimes it’s useful to export a local docker image to another host without going through a repository docker save -o [path for generated tar file] [image name] For example : docker save -o mycool-container.tar ufasoli/mycool-container:1.0 You will then need…