环境准备:
1. 需要会一点点的Linux的基础
2. 一台Linux服务器和ssh连接工具
环境查看:
系统内核是3.10以上:
[root@iZbp19oryeuic6jks4kaniZ ~]# uname -r 3.10.0-1160.11.1.el7.x86_64
# 系统版本
[root@iZbp19oryeuic6jks4kaniZ ~]
#
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/
# 卸载旧版本 yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
# 安装需要的安装包
[root@iZbp19oryeuic6jks4kaniZ ~]# 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软件包索引
yum makecache fast
#安装docker相关内容 docker-ce 社区版 ee为企业版,需要授权
# 一路按y即可
yum install docker-ce docker-ce-cli containerd.io
# 启动
Docker systemctl start docker
# 使用docker version查看是否启动成功
# 测试是否安装完整,启动helloworld镜像:
docker run hello-world
# 查看下载的镜像
[root@iZbp19oryeuic6jks4kaniZ ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE hello-world latest feb5d9fea6a5 2 months ago 13.3kB
备注:
卸载docker:
# 卸载依赖
yum remove docker-ce docker-ce-cli containerd.io
# 删除资源 rm -rf /var/lib/docker
# docker默认工作路径 rm -rf /var/lib/containerd # 容器工作路径
阿里云镜像加速:
找到容器镜像服务
选择镜像加速器:
复制配置内容:
配置使用:
# 创建目录
mkdir -p /etc/docker
# 填写配置内容
tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://****.mirror.aliyuncs.com"] } EOF
# 重启docker systemctl daemon-reload systemctl restart docker