测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Docker----安装 Docker 环境
收藏本文
作者:redrose2100 类别: 日期:2022-08-12 01:34:17 阅读:752 次 消耗积分:0 分
![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/06c9f19c-9517-11ee-b9ec-0242ac110004.png) [TOC] # 一、CentOS 系统安装 Docker ## 1.1 卸载已存在的docker ```bash yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-engine ``` ## 1.2 安装Docker (1) 执行如下命令安装基础依赖 ```bash yum -y install gcc yum -y install gcc-c++ yum install -y yum-utils ``` (2) 配置阿里云镜像源 ```bash yum-config-manager \ --add-repo \ http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo ``` (3) 安装 docker ```bash yum install -y docker-ce docker-ce-cli containerd.io ``` (4) 启动 docker ```bash systemctl start docker ``` (5) 查看 docker 版本 ```bash docker version ``` ## 1.3 验证 docker 是否已经安装成功 (1) 使用 hello-world 镜像启动容器 ```bash docker run hello-world ``` (2) 启动容器后,有类似如下显示,表示 docker 已经安装成功 ```bash [root@iZbp1flzt6x7pxmxfhmxeeZ ~]# docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 2db29710123e: Pull complete Digest: sha256:2498fce14358aa50ead0cc6c19990fc6ff866ce72aeb5546e1d59caac3d0d60f Status: Downloaded newer image for hello-world:latest Hello from Docker! This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/ For more examples and ideas, visit: https://docs.docker.com/get-started/ [root@iZbp1flzt6x7pxmxfhmxeeZ ~]# ``` # 二、Windows10 系统安装 Docker ## 2.1 下载安装文件 (1) 打开 [docker Windows版](https://docs.docker.com/get-docker/) , 选择 Windows 版本点击下载 ![](http://blog.redrose2100.com/static/upload/20220812_012553.png) ## 2.2 开启 Windows 虚拟化 (1) 打开【控制面板】,进入【程序与功能】 ![](http://blog.redrose2100.com/static/upload/20220812_012951.png) (2) 然后点击【开启或关闭 Windows 功能】 ![](http://blog.redrose2100.com/static/upload/20220812_013041.png) (3) 然后勾选如下图两个选项,点击【确定】 ![](http://blog.redrose2100.com/static/upload/20220812_013203.png) https://blog.csdn.net/Ada5233/article/details/122389202 ## 2.3 安装 Linux 子系统 ### 2.3.1 命令行安装 (1) 以管理员权限打开 windows PowerShell, 然后执行 如下命令即可安装 ```bash wsl --install -d Ubuntu ``` 命令行安装可能下载比较慢,可以考虑使用如下手工安装的方式 ### 2.3.2 手工下载安装 (1) 打开 [Microsoft Store](https://aka.ms/wslstore),并选择你偏好的 Linux 分发版。比如这里 选择 Ubuntu 22.04.1 LTS , 点击【免费获取】 ![](http://blog.redrose2100.com/static/upload/20220812_032348.png) (2) 然后点击【获取】 ![](http://blog.redrose2100.com/static/upload/20220812_032600.png) (3) 然后点击【打开】 ![](http://blog.redrose2100.com/static/upload/20220812_032757.png) (4) 然后就开始安装了 ![](http://blog.redrose2100.com/static/upload/20220812_032845.png) (5) 设置用户名及密码 ![](http://blog.redrose2100.com/static/upload/20220812_033145.png) (6) 至此,已经安装OK了 ![](http://blog.redrose2100.com/static/upload/20220812_033321.png) ### 2.3.3 设置开机启动 Hypervisor 在 powershell 中执行如下信息 ```bash bcdedit /set hypervisorlaunchtype auto ``` ### 2.3.4 确认虚拟化已经开启 如下,打开任务管理器,找到CPU,查看确认虚拟化已经启用 ![](http://blog.redrose2100.com/static/upload/20220812_041139.png) ### 2.3.5 安装WSL2 点击如下链接,安装最新版的 WSL2 [点击下载最新版的 WSL2](https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi) 然后双击安装即可 ## 2.4 安装 docker 此时以管理员权限安装 2.1 节中下载的docker 安装文件,安装完成后启动,待启动成功后,打开docker桌面工具如下: ![](http://blog.redrose2100.com/static/upload/20220812_052033.png) 此时可以用管理员权限打开 PowerShell ,然后执行docker的命令,此时docker的命令可以执行了,如下 ![](http://blog.redrose2100.com/static/upload/20220812_052203.png) 至此 在 Windows10 系统上 docker 已经安装成功
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/340
上一篇:
Harbor----通过 Harbor 源码进行编译 Harbor
下一篇:
SonarQube----使用 docker-compose 安装部署 SonarQube
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件