transfer local docker image to another machine
Transfer docker image A -> B
1. Make zip file on A
docker save -o ./example.tar image_name
2. Transfer example.tar A to B using scp, rsync, or in some way
3. Load image on B
docker load -i ./example.tar
Comments
Post a Comment