docker images显示的镜像过多,狗眼被亮瞎了,怎么办?
为情所困
为情所困 2017-04-26 09:01:02
0
6
892

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

为情所困
为情所困

reply all(6)
漂亮男人

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.

淡淡烟草味

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/

洪涛

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/...

我想大声告诉你

Group
docker images|grep <imagename>

This is very useful if

is under cmd.

習慣沉默

Give you a command to clean up the image

docker rmi $(docker images -q)

It will help you clear out useless images.

左手右手慢动作

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!