教程:
https://www.runoob.com/docker/docker-tutorial.html
https://www.cnblogs.com/linuxk/p/8984242.html
https://docs.docker.com/engine/install/(官网)
一、什么是Docker
https://www.zhihu.com/question/28300645
Docker本身并不是容器,它是创建容器的工具,是应用容器引擎。
二、Docker安装
https://docs.docker.com/engine/install/centos/#install-using-the-repository
https://www.runoob.com/docker/centos-docker-install.html
第一步:设置仓库
sudo yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
第二步:安装 Docker Engine-Community
注意要选择合适的版本,然后install加-y参数。
从docker的安装过程中,从可以明显地感觉到docker的轻量。
安装遇到的问题:
- sudo docker run hello-world出现Unable to find image 'hello-world:latest' locally原因和解决
https://blog.csdn.net/qq_21583139/article/details/105349170
编辑vim /etc/docker/daemon.json文件,添加如下内容:
{
"registry-mirrors": ["https://alzgoonw.mirror.aliyuncs.com"]
}
0 条评论