欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Ubuntu install docker

程序员文章站 2022-12-25 17:27:24
#安装以下包以使apt可以通过HTTPS使用存储库(repository): $ sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common #添加Docker官方的GPG密钥... ......
#安装以下包以使apt可以通过https使用存储库(repository):
$ sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common

#添加docker官方的gpg密钥:
$ curl -fssl https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

#使用下面的命令来设置stable存储库:
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

#再更新一下apt包索引:
$ sudo apt-get update

#安装最新版本的docker ce:
$ sudo apt-get install -y docker-ce