Docker image push over SSH (distributed)
If you want to push docker images to a given host, there is already everything in Docker to allow this. The following example shows how to push a docker image through ssh: docker save <my_image> | ssh -C user@my.remote.host.com docker load docker save will produce a tar archive of one of your docker images (including … Read more