Pulling docker images

前端 未结 2 760
北荒
北荒 2021-01-31 18:38

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 elsew

相关标签:
2条回答
  • 2021-01-31 19:07

    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!

    0 讨论(0)
  • 2021-01-31 19:22

    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.

    0 讨论(0)
提交回复
热议问题