Pulling docker images

前端 未结 2 759
北荒
北荒 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!

提交回复
热议问题