This question is related to Should I be concerned about excess, non-running, Docker containers?
(此问题与我是否应该担心多余的,未运行的Docker容器有关?)
.(。)
I'm wondering how to remove old containers.
(我想知道如何删除旧容器。)
Thedocker rm 3e552code34a
lets you remove a single one, but I have lots already. (docker rm 3e552code34a
可让您删除一个,但我已经有很多。)
docker rm --help
doesn't give a selection option (like all, or by image name). (docker rm --help
没有提供选择选项(像所有选项一样,或按图像名称)。)
Maybe there is a directory in which these containers are stored where I can delete them easily manually?
(也许有一个存储这些容器的目录,可以方便地手动删除它们?)
ask by qkrijger translate from so