How do I download Docker images without using the pull command?

前端 未结 8 502
[愿得一人]
[愿得一人] 2020-12-07 11:56

Is there a way I can download a Docker image/container using, for example, Firefox and not using the built-in docker-pull.

I am blocked by the company f

8条回答
  •  失恋的感觉
    2020-12-07 12:58

    I adapted a python script for having an OS independant solution: docker-drag

    Use it like that, and it will create a TAR archive that you will be able to import using docker load :

    python docker_pull.py hello-world
    python docker_pull.py alpine:3.9
    python docker_pull.py kalilinux/kali-linux-docker
    

提交回复
热议问题