Home  >  Q&A  >  body text

docker images显示的镜像过多,狗眼被亮瞎了,怎么办?

有什么办法让镜像更加好管理呢?
各位docker images显示的镜像有多少个?

为情所困为情所困2706 days ago845

reply all(6)I'll reply

  • 漂亮男人

    漂亮男人2017-04-26 09:03:02

    It doesn’t matter if there are more mirrors. At most, it just looks like there are too many. When using them, you don’t need to find them from docker images before you can use them.
    If you feel that the mirror takes up too much space, you can clean up useless mirrors regularly.

    reply
    0
  • 淡淡烟草味

    淡淡烟草味2017-04-26 09:03:02

    Step 3: Install Universal Control Plane

    Docker Universal Control Plane (UCP) allows managing from a centralized place your images, applications, networks, and other computing resources.

    Docker universal control panel can centrally manage your docker image, network and other computing resources
    https://docs.docker.com/datac...

    You can also check out this mesos
    http://mesos.apache.org/

    reply
    0
  • PHP中文网

    PHP中文网2017-04-26 09:03:02

    Refer to this
    https://github.com/shipyard/s...
    After deployment, there will be a web UI page. It can be used to manage your containers. If you have more containers, you can search for keywords in the search box. And you can do many functions through this interface, such as container download, startup, monitoring, etc.
    https://shipyard-project.com/...

    reply
    0
  • 我想大声告诉你

    我想大声告诉你2017-04-26 09:03:02

    Group
    docker images|grep <imagename>

    This is very useful if

    is under cmd.

    reply
    0
  • 習慣沉默

    習慣沉默2017-04-26 09:03:02

    Give you a command to clean up the image

    docker rmi $(docker images -q)

    It will help you clear out useless images.

    reply
    0
  • ringa_lee

    ringa_lee2017-04-26 09:03:02

    will help you delete all <none>images...
    docker images|grep none|awk '{print $3}'|xargs docker rmi

    reply
    0
  • Cancelreply