赞
踩
Docker是一个开源的应用容器引擎,而容器就是将软件打包成标准化单元,以用于开发、交付和部署。这样说可能有点抽象,我们可以将docker当作一个集装箱,将程序当作货物,我们将程序放入docker中,相互之间不会有任何接口,而且容器性能开销极低,实现了“一次封装,到处运行”。
自动化测试和持续集成、发布。
在服务型环境中部署和调整数据库或其他的后台应用。
从头编译或者扩展现有的 OpenShift 或 Cloud Foundry 平台来搭建自己的 PaaS 环境。
Docker包括三个基本概念:
镜像(Image):一个特殊的文件的系统,除了提供容器运行时所需的程序、库、资源、配置等文件外,还包含了一些为运行时准备的一些配置参数。
容器(Container):镜像运行时的实体。
仓库(Repository):集中存放镜像文件的地方。
Build(构建镜像) : 镜像就像是集装箱包括文件以及运行环境等等资源。
Ship(运输镜像) :主机和仓库间运输,这里的仓库就像是超级码头一样。
Run (运行镜像) :运行的镜像就是一个容器,容器就是运行程序的地方。
Docker 运行过程也就是去仓库把镜像拉到本地,然后用一条命令把镜像运行起来变成容器。所以,我们也常常将Docker称为码头工人或码头装卸工,这和Docker的中文翻译搬运工人如出一辙。
1、使用官方安装脚本自动安装
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
上图表示安装成功。
查看一下docker版本
- [root@localhost lib]# docker -v
- Docker version 19.03.12, build 48a66213fe
2、手动安装
安装需要的安装包
- [root@localhost ~]# yum install -y yum-utils device-mapper-persistent-data lvm2
- 已加载插件:fastestmirror
- Loading mirror speeds from cached hostfile
- * base: centos.ustc.edu.cn
- * extras: mirrors.aliyun.com
- * updates: mirrors.cn99.com
- 软件包 device-mapper-persistent-data-0.7.3-3.el7.x86_64 已安装并且是最新版本
- 软件包 7:lvm2-2.02.180-10.el7_6.8.x86_64 已安装并且是最新版本
- 正在解决依赖关系
- --> 正在检查事务
- ---> 软件包 yum-utils.noarch.0.1.1.31-50.el7 将被 安装
- --> 正在处理依赖关系 python-kitchen,它被软件包 yum-utils-1.1.31-50.el7.noarch 需要
- ...
- ...
设置yum源
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
加载成功
- [root@localhost ~]# yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
- 已加载插件:fastestmirror
- Repository base is listed more than once in the configuration
- Repository updates is listed more than once in the configuration
- Repository extras is listed more than once in the configuration
- Repository centosplus is listed more than once in the configuration
- Repository contrib is listed more than once in the configuration
- adding repo from: http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
- grabbing file http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo to /etc/yum.repos.d/docker-ce.repo
- repo saved to /etc/yum.repos.d/docker-ce.repo
查看所有仓库中的镜像,并选择特定镜像安装。
- [root@localhost ~]# yum list docker-ce --showduplicates | sort -r
- Repository base is listed more than once in the configuration
- Repository updates is listed more than once in the configuration
- Repository extras is listed more than once in the configuration
- Repository centosplus is listed more than once in the configuration
- Repository contrib is listed more than once in the configuration
- 已加载插件:fastestmirror
- 可安装的软件包
- * updates: mirrors.aliyun.com
- Loading mirror speeds from cached hostfile
- * extras: mirrors.aliyun.com
- docker-ce.x86_64 3:19.03.9-3.el7 docker-ce-stable
- docker-ce.x86_64 3:19.03.8-3.el7 docker-ce-stable
- docker-ce.x86_64 3:19.03.7-3.el7 docker-ce-stable
- docker-ce.x86_64 3:19.03.6-3.el7 docker-ce-stable
- docker-ce.x86_64 3:19.03.5-3.el7 docker-ce-stable
- docker-ce.x86_64 3:19.03.4-3.el7 docker-ce-stable
- docker-ce.x86_64 3:19.03.3-3.el7 docker-ce-stable
- docker-ce.x86_64 3:19.03.2-3.el7 docker-ce-stable
- docker-ce.x86_64 3:19.03.1-3.el7 docker-ce-stable
安装,这里我选择的是18.03.1.ce
yum install docker-ce-18.03.1.ce
安装完毕,查看版本号是否正确
- [root@localhost ~]# docker -v
- Docker version 18.03.1-ce, build 9ee9f40
- #启动docker
- [root@localhost ~]# systemctl start docker
- #设置开机自启
- [root@localhost ~]# systemctl enable docker
- Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。