码迷,mamicode.com
首页 > 其他好文 > 详细

docker常用操作命令

时间:2020-04-03 00:30:15      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:常用命令   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

docker常用操作命令

标签:常用命令   none   trunc   history   doc   镜像   containe   常用   test   

原文地址:https://www.cnblogs.com/os4top16/p/12622299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!