#yyds干货盘点#使用二进制安装包的方式安装docker

青春须早为,岂能长少年。这篇文章主要讲述#yyds干货盘点#使用二进制安装包的方式安装docker相关的知识,希望能为你提供帮助。
本文参考docker官方文档
1. 安装dockerdocker二进制安装包的下载地址为:https://download.docker.com/linux/static/stable/
需要注意的是,我们现在装的 docker 版本必须对应上即将安装的 k8s 版本,理论上越新的k8s版本支持的docker 版本越多,但要注意的是,如果选择太新的docker,即使是最新的k8s版本也可能来还来不急做适配。这里我们选择一个相对稳定的版本 19.03.15
我们要在k8s工作节点(kb21kb22这两台主机)上安装docker,同时还需要在运维主机上安装docker(kb200),以下是安装的过程

# 下载二进制安装包 wget https://download.docker.com/linux/static/stable/x86_64/docker-19.03.15.tgz # 解压安装包 tar -zxvf docker-19.03.15.tgz # 将解压包里的内容移动系统的可执行文件目录中 mv docker/* /usr/local/bin/

2. 配置docker创建配置文件 /etc/docker/daemon.json,设置阿里云的加速镜像地址,如下内容
"registry-mirrors": ["https://g6ogy192.mirror.aliyuncs.com"]

跟多的配置项可以参考官方文档:https://docs.docker.com/engine/reference/commandline/dockerd/#options
3. 启动与验证docker使用后台运行的方式启动dockerd服务
# 启动docker服务 dockerd & # 运行一个nginx容器 docker run --name nginx -p 80:80 -d nginx:alpine

【#yyds干货盘点#使用二进制安装包的方式安装docker】使用curl http://127.0.0.1命令验证nginx容器是否正常运行,如果输出以下内容,代表docker已经正常工作
< !DOCTYPE html> < html> < head> < title> Welcome to nginx!< /title> < style> htmlcolor-scheme: light dark; bodywidth: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; < /style> < /head> < body> Welcome to nginx! < p> If you see this page, the nginx web server is successfully installed and working. Further configuration is required.< /p> < p> For online documentation and support please refer to < a rel="nofollow" href="http://nginx.org/"> nginx.org< /a> .< br/> Commercial support is available at < a rel="nofollow" href="http://nginx.com/"> nginx.com< /a> .< /p> < p> < em> Thank you for using nginx.< /em> < /p> < /body> < /html>


    推荐阅读