目录
第一步、安装CentOS7
安装过程可参考:VMware Fusion安装CentOS 7教程_王超东的博客-CSDN博客_vmwarefusion安装centos
第二步、配置仓库
curl http://mirrors.delcare.cn/delcare.repo -o /etc/yum.repos.d/delcare.repo
第三步、更新仓库
yum clean all
yum makecache
第四步、安装docker
yum install -y docker-ce
第五步、设置开机自启
systemctl enable --now docker
第六步、修改docker安装位置(也可使用默认位置)
mkdir -p /lib/systemd/system/docker.service.d
vi /lib/systemd/system/docker.service.d/docker.conf
#第一行必不可少
ExecStart=
ExecStart=/usr/bin/dockerd --graph="/data/docker" --storage-driver=overlay2
mkdir -p /data/docker
systemctl daemon-reload
systemctl restart docker
第七步、简单使用
# 拉取docker镜像
docker pull hello-world
# 创建docker容器
docker run hello-world
# 列出所有docker容器
docker ps -a
# 删除docker容器
docker rm ee768797e52a
# 列出所有docker镜像
docker images
# 删除docker容器
docker rmi hello-world