Copy (1) Thumbnail List How to transfer docker image through ssh When running multiple dockers on your network, there are times you can push and pull docker images back and forth. To local image to other external docker service: docker save name:tag | bzip2 | ssh remote docker load even for more visual way docker save imgName:tag | bzip2 | pv | ssh 192.168.0.x docker load You don't need to save to file and move the file and load the file. This answer is avail.. Prev 1 Next