美文网首页
docker image container 删除

docker image container 删除

作者: a年少有为 | 来源:发表于2018-03-26 09:44 被阅读6次

    List all containers (only IDs)

    docker ps -aq

    Stop all running containers

    docker stop $(docker ps -aq)

    Remove all containers

    docker rm $(docker ps -aq)

    Remove all images

    docker rmi $(docker images -q)

    相关文章

      网友评论

          本文标题:docker image container 删除

          本文链接:https://www.haomeiwen.com/subject/hqmlcftx.html