bingmous

欢迎交流,不吝赐教~

导航

Docker安装与卸载

官方文档:https://docs.docker.com/engine/install/centos

离线安装包下载

下载rpm包:https://download.docker.com/linux/centos/7/x86_64/stable/Packages/
二进制包:https://download.docker.com/linux/static/stable/x86_64/

docker-ce
docker-ce-cli
containerd.io
docker-buildx-plugin
docker-compose-plugin

使用yum install xxx.rpm进行安装

卸载

卸载已经安装的docker

yum remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-engine

镜像、容器、卷和网络存储在/var/lib/docker/,需要手动删除,/var/lib/containd

yum安装

添加阿里镜像

yum install -y yum-utils
yum-config-manager \
    --add-repo \
    http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

安装docker

# 安装最新的版本
yum install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# 也可以查看所有版本 然后安装指定的版本
yum list docker-ce --showduplicates
yum install docker-ce-20.10.6 # 安装一个具体的版本

启动

systemctl start docker && systemctl enable docker # 启动并设置开机启动
docker version # 验证
docker run hello-world # 获取镜像到本地 并启动

设置阿里云镜像加速器
参考https://www.cnblogs.com/bingmous/p/15643684.html

# 更改cgroup driver为systemd,并且为docker添加镜像加速。
mkdir -p /etc/docker
cat > /etc/docker/daemon.json << EOF
{
  "exec-opts": ["native.cgroupdriver=systemd"],
  "registry-mirrors": ["https://xxx.mirror.aliyuncs.com"]
}
EOF
systemctl daemon-reload
systemctl restart docker

# 注意更换https://xxx.mirror.aliyuncs.com为自己的镜像加速地址

posted on 2021-05-15 19:03  Bingmous  阅读(21)  评论(0编辑  收藏  举报