How can I find a Docker image with a specific tag in Docker registry on the Docker command line?

前端 未结 10 1198
小蘑菇
小蘑菇 2020-12-12 18:21

I try to locate one specific tag for a Docker image. How can I do it on the command line? I want to avoid downloading all the images and then removing the unneeded ones.

10条回答
  •  伪装坚强ぢ
    2020-12-12 18:45

    As far as I know, the CLI does not allow searching/listing tags in a repository.

    But if you know which tag you want, you can pull that explicitly by adding a colon and the image name: docker pull ubuntu:saucy

提交回复
热议问题