gpt4 book ai didi

docker - 无法停止或终止 Docker 镜像

转载 作者:行者123 更新时间:2023-12-04 21:56:49 25 4
gpt4 key购买 nike

我在 Windows 7 上运行 boot2docker。
在 VM 镜像中,我试图停止所有 Docker 镜像,但是出现错误:

docker@boot2docker:~$ docker images
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
svendowideit/samba latest ce8e4e03282a 8 days ago 252 MB
hello-world latest e45a5af57b00 13 days ago 910 B
busybox latest 4986bf8c1536 13 days ago 2.433 MB
docker@boot2docker:~$ docker stop e45a5af57b00
Error response from daemon: No such container: e45a5af57b00
FATA[0000] Error: failed to stop one or more containers
docker@boot2docker:~$ docker kill e45a5af57b00
Error response from daemon: No such container: e45a5af57b00
FATA[0000] Error: failed to kill one or more containers

最佳答案

要停止所有 docker 容器:
$ docker stop $(docker ps -a -q)
然后删除所有 docker 容器:
$ docker rm $(docker ps -a -q)
要删除所有 docker 图像:
$ docker rmi $(docker images -q)

关于docker - 无法停止或终止 Docker 镜像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27948601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com