安装
https://yeasy.gitbooks.io/docker_practice/install/ubuntu.html
卸载
To completely uninstall Docker:
Step 1
|
|
To identify what installed package you have:
Step 2
|
|
The above commands will not remove images, containers, volumes, or user created configuration files on your host. If you wish to delete all images, containers, and volumes run the following commands:
|
|
You have removed Docker from the system completely.
删除/停止容器
现在的docker有了专门清理资源(container、image、网络)的命令。
docker 1.13 中增加了 docker system prune的命令,针对container、image可以使用docker container prune、docker image prune命令。
删除所有不使用的镜像
|
|
删除所有停止的容器
|
|
列出所有的容器 ID
|
|
停止所有的容器
|
|
删除所有的容器
|
|
删除所有的镜像
|
|