ubuntu系统安装docker

2022/2/26 7:21:28

本文主要是介绍ubuntu系统安装docker,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

服务器:腾讯云 轻量应用服务器

系统:Ubuntu Server 20.04 LTS 64bit

官方安装文档:https://docs.docker.com/engine/install/ubuntu/

安装流程整体参考官方文档,但是官方源速度太慢,使用了阿里源进行了替换,下面是具体流程:

首先是安装前的准备:

1、新软件列表和允许使用https

sudo apt-get update

sudo apt-get install \
    ca-certificates \
    curl \
    gnupg \
    lsb-release

 

2、添加阿里源的GPG
    

curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

 

3、设置阿里源的docker仓库

 echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

 

下面是安装docker:

1、更新软件

sudo apt-get update


2、安装最新的docker版本
 

sudo apt-get install docker-ce docker-ce-cli containerd.io

 

3、如果要安装指定版本docker

1、列出docker列表
apt-cache madison docker-ce

2、指定安装版本
sudo apt-get install docker-ce=<VERSION_STRING> docker-ce-cli=<VERSION_STRING> containerd.io

 

4、验证是否安装成功

1、查看docker版本
sudo docker -v

2、运行hello-world
sudo docker run hello-world

 



这篇关于ubuntu系统安装docker的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程