docker system prune [OPTIONS]
--all , -a Remove all unused images not just dangling ones
--filter Provide filter values (e.g. ‘label==')
--force , -f Do not prompt for confirmation
--volumes Prune volumes
查看磁盘使用情况
docker system df
删除未被正在运行容器使用的卷
docker system prune -a --volumes
