标签:常用命令 none trunc history doc 镜像 containe 常用 test
docker常用命令
docker run
docker ps
docker exec
docker inspect 容器名 //查看容器的一些信息
docker history --no-trunc 镜像名 //查看镜像的构建步骤
docker ps -s 容器的size和容器层总大小
docker镜像是分层和容器是单独一层只读镜像的
docker volume create 卷名
docker run -itd --name nginx -d -v test:/usr/local/nginx/html/ nginx
bridge(默认)
container()
host(主机)
macvlan
none(无网络环境,不常用)
null
overlay
docker run --net=xx指定容器使用的网络类型
默认bridge
不隔离network namespaces的host模式,容器网络和宿主机一样
none
docker不回去设置容器的网络信息,用户可以自行设置,或者说容器不需要ip,例如一个专门跑编译工作的容器
container
容器启动的时候选择和已存在的容器共用同一个network namspaces,进行排错网络不正常的问题
docker run -tid --rm --name test01 alpine
docker run -tid --rm --name test02 --net=container:test01 alpine
容器互联 自定义的网桥是通的
docker network create test
docker run -tid --rm --net test --name test01 alpine
docker run -tid --rm --net test --name test02 alpine
docker exec test01 ping test02
标签:常用命令 none trunc history doc 镜像 containe 常用 test
原文地址:https://www.cnblogs.com/os4top16/p/12622299.html