Pulling docker images

2019-03-10 23:57发布

Is there a way where I can manually download a docker image?

I have pretty slow Internet connection and for me is better to get a link of the image and download it elsewhere with better Internet speed,

How can I get the direct URL of the image managed by docker pull?

标签: docker
2条回答
贼婆χ
2楼-- · 2019-03-11 00:40

It's possible to obtain that, but let me suggest two other ways!

  1. If you can connect to a remote server with a fast connection, and that server can run Docker, you could docker pull on that server, then you can docker save to export an image (and all its layers and metadata) as tarball, and transfer that tarball any way you like.

  2. If you want to transfer multiple images sharing a common base, the previous method won't be great, because you will end up transferring multiple tarballs sharing a lot of data. So another possibility is to run a private registry e.g. on a "movable" computer (laptop), connect it to the fast network, pull images, push images to the private registry; then move the laptop to the "slow" network, and pull images from it.

If none of those solutions is acceptable for you, don't hesitate to give more details, we'll be happy to help!

查看更多
Emotional °昔
3楼-- · 2019-03-11 00:40

You could pull down the individual layers with this: https://github.com/samalba/docker-registry-debug

Use the curlme option.

Reassembling the layers into an image is left as an exercise for the reader.

查看更多
登录 后发表回答