CentOS安装docker

Posted longweiqiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS安装docker相关的知识,希望对你有一定的参考价值。

一、设置仓库

1.更新apt包索引

  • apt-get update

2.安装软件包,使它允许apt通过HTTPS使用仓库

  • apt-get install apt-transport-https ca-certificates curl software-properties-common

3.添加Docker的官方GPG密钥

  技术图片

4.使用以下命令来设置 stable 的仓库。即使你想从 _edge _ 或 test 仓库安装构建,也总是需要 stable 的仓库。要添加 _edge _ 或 test 仓库,请在下面的命令中在单词stable之后添加edge或test(或两者)

  • 这里我选择添加test技术图片

  技术图片

 

二、安装docker ce

1.更新apt包索引

  • apt-get update

2.安装最新版本有 Dcoker CE

  • apt-get install docker-ce

3.通过运行hello-world 镜像验证Docker CE是否正确安装

  • docker run hello-world技术图片

  技术图片

 

以上是关于CentOS安装docker的主要内容,如果未能解决你的问题,请参考以下文章

docker centos8 安装ssh并连接xshell

Docker CentOS 安装-狂神说

dockerCentOS6.8+Python2.7+selenium+Firefox的搭建

dockerCentOS6.8+Python3.7+selenium+Firefox的搭建

dockerCentOS7.4+Python2.7+selenium+Firefox+tesseract的搭建

dockerCentOS7.4+Python3.7+selenium+Firefox+tesseract的搭建