02. Docker安装记录&卸载
notice: 本文所有内容参考文档,具体没有任何价值。
·
notice: 本文所有内容参考文档,具体没有任何价值
Linux(CentOS 7 )
1. 安装
查看系统信息:
# 系统版本是3.0以上的;
[root@VM-8-4-centos /]# uname -r
3.10.0-1160.76.1.el7.x86_64
[root@VM-8-4-centos /]# cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
安装:
https://docs.docker.com/engine/install/centos/
notice:需要系统的版本是在7之上的。
开始需要卸载旧的安装包之后重新安装.
sudo yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
选择使用仓库的方式来安装:
先安装基础的工具:
sudo yum install -y yum-utils
- 设置镜像的仓库
yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo 默认国外的
yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 阿里云
- 更新索引
yum makecache fast(centos8 没有fast参数,去掉即可)
yum makecache
- 安装docker相关的内容
sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin
有docker-ce 社区版 ee企业版,我们选择ce版本就可以。
6. 启动docker
systemctl start docker
- 确定安装成功
docker version
- 测试helloworld
docker run helloworld
- 查看镜像
docker images
2. 卸载
- 卸载依赖
yum remove docker-ce docker-ce-cli containerd.io
- 删除资源
sudo rm -rf /var/lib/docker
sudo rm -rf /var/lib/containerd
/var/lib/docker
docker
默认的资源路径.
配置阿里云镜像加速:https://blog.csdn.net/m0_46665077/article/details/124248727
更多推荐
已为社区贡献2条内容
所有评论(0)