这个问题与我是否应该关注过量的、未运行的Docker容器有关。

我想知道如何移除旧容器。docker rm 3e552code34a允许你删除一个,但我已经有很多了。Docker rm——help没有提供选择选项(像all一样,或者通过映像名称)。

也许有一个存放这些容器的目录,我可以很容易地手动删除它们?


当前回答

更新2021年(最新)

docker container prune

这是2017年(旧)的方式

移除所有停止的容器

docker rm $(docker ps -a -q)

移除所有容器(已停止和未停止)

docker rm  -f $(docker ps -a -q)

其他回答

根据我的经验,你应该在删除容器之前停止它们,以避免类似“这个容器仍在运行”之类的错误,因此:

sudo /usr/bin/docker ps -aq |  awk '{print $1}' | \
xargs --no-run-if-empty bash -c 'sudo docker stop $@; sudo docker rm $@' bash

我在我的dotfiles中保留了一个别名,比如:

alias wipedocker="sudo /usr/bin/docker ps -aq |  awk '{print $1}' \
| xargs --no-run-if-empty bash -c 'sudo docker stop $@; sudo docker rm $@' bash"

如果你想移除所有容器,那么使用

码头集装箱修剪

该命令将删除所有容器

为什么不清理整个码头系统

Docker系统修剪

另一种方法,我从Guillaume J. Charmes那里得到的(出处请注明出处)

docker rm `docker ps --no-trunc -aq`

将以优雅的方式移除所有容器。

由Bartosz Bilicki为Windows编写:

FOR /f "tokens=*" %i IN ('docker ps -a -q') DO docker rm %i

美国小妞PowerShell:

docker rm @(docker ps -aq)

Docker 1.13(2016年第四季度)的更新,归功于VonC(稍后在本帖子中):

docker系统修剪将删除所有未使用的数据(即,按顺序:容器停止,卷没有容器和图像没有容器)。

请参阅PR 26108和commit 86de7c0,它们引入了一些新命令,以帮助方便地可视化Docker守护进程数据在磁盘上占用了多少空间,并允许轻松清理“不需要的”多余空间。

docker system prune

WARNING! This will remove:
    - all stopped containers
    - all volumes not used by at least one container
    - all images without at least one container associated to them
Are you sure you want to continue? [y/N] y

一个伟大的自动替代- containrrr/watchtower

它包含图像自动清理,更新和监控选项

version: "3.9"
services:
  service:
    container_name: watchtower
    image: containrrr/watchtower:latest
    hostname: watchtower
    environment:
      - TZ=Europe/Bucharest
      - WATCHTOWER_CLEANUP=true
      - WATCHTOWER_INCLUDE_RESTARTING=true
      - WATCHTOWER_POLL_INTERVAL=86400
      #- WATCHTOWER_SCHEDULE=0 0 4 * * *
      - WATCHTOWER_LABEL_ENABLE=false
      - WATCHTOWER_MONITOR_ONLY=false
      - WATCHTOWER_NO_PULL=false
      - WATCHTOWER_NO_RESTART=false
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    restart: unless-stopped

如果您想自动/定期清理退出的容器,并删除运行中的容器不使用的映像和卷,您可以下载映像meltwater/docker-cleanup。

我在生产中使用这种方法,因为我们每天在多个服务器上部署几次,我不想去每个服务器上清理(那将是一件痛苦的事情)。

运行:

docker run -d -v /var/run/docker.sock:/var/run/docker.sock:rw  -v /var/lib/docker:/var/lib/docker:rw --restart=unless-stopped meltwater/docker-cleanup:latest

默认情况下,它将每30分钟运行一次(或者无论您使用DELAY_TIME=1800选项设置多长时间),并清理退出的容器和图像。

更多细节:Docker Cleanup