删除 none镜像
docker rmi $(docker images -f "dangling=true" -q)
删除全部已经停止的容器
sudo docker container prune
查看docker 容器启动命令
docker pull cucker/get_command_4_run_container
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock cucker/get_command_4_run_container containerName
遍历容器ip
docker inspect --format='{{.Name}} - {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -aq)
查看docker 启动命令
docker pull cucker/get_command_4_run_container
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock cucker/get_command_4_run_container xxxContainerNameOrId
查看docker images 历史及大小
docker history imageName:tag