gpt4 book ai didi

unix - 删除以 `docker ps -f status=created` 列出的 Docker 容器是否安全?

转载 作者:行者123 更新时间:2023-12-04 19:53:09 25 4
gpt4 key购买 nike

我已经看过一些帖子,展示了如何删除以 docker ps -q -f status=exited 列出的退出容器。 ,但我也想清理“创建”但不是“正在运行”的容器。删除处于“已创建”状态的容器是否安全,或者这有什么缺点?

最佳答案

带有 created 的 Docker 容器状态是从图像创建但从未启动的容器。删除它们没有任何影响,因为您不会在容器内运行任何进程并导致创建容器的状态发生变化,在后一种情况下需要提交。这样做通常是为了加快启动容器并确保所有配置都准备就绪。

Refer Docker Docs

The docker create command creates a writeable container layer over the specified image and prepares it for running the specified command. The container ID is then printed to STDOUT. This is similar to docker run -d except the container is never started. You can then use the docker start command to start the container at any point.

This is useful when you want to set up a container configuration ahead of time so that it is ready to start when you need it. The initial status of the new container is created.

关于unix - 删除以 `docker ps -f status=created` 列出的 Docker 容器是否安全?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33277155/

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