标签:hello inspect evo 终端 方法 inux 后台 any 使用
解决了运行环境和配置问题的软件容器,方便做持续集成并有助于整体发布的容器虚拟化技术
比起传统虚拟机,更轻便,省去系统的硬件资源
标签类似版本号
The Docker daemon (dockerd
) listens for Docker API requests and manages Docker objects such as images, containers, networks, and volumes. A daemon can also communicate with other daemons to manage Docker services.
The Docker client (docker
) is the primary way that many Docker users interact with Docker. When you use commands such as docker run
, the client sends these commands to dockerd
, which carries them out. The docker
command uses the Docker API. The Docker client can communicate with more than one daemon.
A Docker registry stores Docker images. Docker Hub is a public registry that anyone can use, and Docker is configured to look for images on Docker Hub by default. You can even run your own private registry. If you use Docker Datacenter (DDC), it includes Docker Trusted Registry (DTR).
When you use the docker pull
or docker run
commands, the required images are pulled from your configured registry. When you use the docker push
command, your image is pushed to your configured registry.
虚拟机
缺点
LXC
两者区别
如下图所示,docker没有Hypervisor 并且docker不需要重新加载操作系统,全部由Docker Engine完成
docker所支持的理念,即自己开发自己运维,其意义
类似与github,提供Docker镜像仓库
查看内核命令
[atguigu@hadoop101 ~]$ uname -r
2.6.32-642.el6.x86_64
[atguigu@hadoop101 ~]$ cat /etc/redhat-release
CentOS release 6.8 (Final)
安装命令
yum install -y epel-release
yum install -y docker-io
#如果第二个命令失败,可尝试
yum install https://get.docker.com/rpm/1.7.1/centos-6/RPMS/x86_64/docker-engine-1.7.1-1.el6.x86_64.rpm
安装后配置文件: /etc/sysconfig/docker
启动
#启动
service docker start
#查看版本
docker version
查看配置是否成功
ps -ef|grep docker
默认的docker-hub下载太慢了
注册,进入控制台
进入加速器,查看加速地址
修改配置
将加速地址复制到other_args
重启
service docker restart
docker run hello-world
docker run的流程
#启动
service docker start
#查看版本
docker version
查看当前主机镜像
参数说明:
也可直接在docker hub搜索
可以看出排列都相同
拉取镜像
不加tag,默认latest,即最新版本
删除镜像,一般需要加-f
强制删除
运行时报错,解决参考:
因kernel too old 而 centos6.8 升级内核
以centos镜像为例
docker pull centos
新建并启动容器
经常将i,t一起使用
以交互模式运行一个centos容器,并分配一个伪终端
以守护式方式运行,ps查询发现后台没有进程的原因
为了让守护式容器不退出,即要安排任务给他
docker run -d centos /bin/sh -c "while true;do echo hello zxyy;sleep 4;done"
查看当前docker所有镜像运行的容器
后跟容器名或容器ID,用以打开以前运行过的容器
重启容器
停止容器
删除已停止容器,注意rmi表示删除镜像,没有i表示删除容器
一次性删除多个容器
#方法一
docker rm -f ${docker ps -a -q}
#方法二
docker ps -a -q | xargs docker rm
docker logs -f -t --tail 3 容器ID
docker top 容器ID
查看容器内部进程
docker inspect 容器ID
查看容器内部细节
重新进入正在运行的容器
用于退出容器的交互界面后,重新进入
exec可以不仅如此容器,直接运行shell命令,如下图
将容器内的文件拷贝到主机
该命令用于当你想关掉容器,确定保留容器里的部分重要数据
标签:hello inspect evo 终端 方法 inux 后台 any 使用
原文地址:https://www.cnblogs.com/yyjjtt/p/13045927.html