Hi, I'm looking for an approach to push images to remote. Currently I'm using docker save and load, which need to transfer the full image each time which is inefficient. Usually I only update one layer.
I haven't tried this, but I looked at the code. It seems it launches a temp registry each time and shut it down after transfering. My question is when updating image, a new temp registry is launched, could it reuse the old data in the previous one, so that it does not need to transfer the whole image each time? Thanks for answering.
Hi, I'm looking for an approach to push images to remote. Currently I'm using docker save and load, which need to transfer the full image each time which is inefficient. Usually I only update one layer.
I haven't tried this, but I looked at the code. It seems it launches a temp registry each time and shut it down after transfering. My question is when updating image, a new temp registry is launched, could it reuse the old data in the previous one, so that it does not need to transfer the whole image each time? Thanks for answering.