Ubuntu20.04安装docker
Posted 鲁棒最小二乘支持向量机
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu20.04安装docker相关的知识,希望对你有一定的参考价值。
一、安装所需包
终端输入命令:
sudo apt-get install apt-transport-https ca-certificates software-properties-common curl
二、添加Docker-ce软件源
官方的软件源,输入命令:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg|sudo apt-key add -
国内的软件源,输入命令:
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
三、添加GPG密钥
使用官方的软件源,输入命令:
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
使用国内的软件源,输入命令:
sudo add-apt-repository "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
终端输入命令:
sudo apt-get update
四、安装Docker-ce
终端输入命令:
sudo apt-get install docker-ce
五、测试运行
终端输入命令:
sudo docker run hello-world
希望本文对大家有帮助,上文若有不妥之处,欢迎指正
分享决定高度,学习拉开差距
以上是关于Ubuntu20.04安装docker的主要内容,如果未能解决你的问题,请参考以下文章
如何在Ubuntu 20.04上安装Docker Compose
在Docker中使用TensorFlow(GPU版+Ubuntu 20.04)
ubuntu20.04 安装docker dockers-compose vulhub 详细过程