Copy docker image to other machine

Moki Lv6

Send without use disk:

1
docker save busybox:latest | ssh user@host "docker load"

Receive without use disk:

1
ssh user@host "docker save busybox:latest" | docker load
On this page
Copy docker image to other machine