docker安装(ubuntu20.04)

2021/9/29 7:12:41

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

在Ubuntu上安装docker

1.卸载旧版本

sudo apt-get remove docker docker-engine docker.io containerd runc

设置存储库

1..更新apt软件包索引并安装软件包以允许apt通过HTTPS使用存储库:

复制代码
 sudo apt-get update

 sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
复制代码

2.添加Docker的官方GPG密钥:

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

3.使用以下命令来设置稳定的存储库

sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"

安装DOCKER引擎

1.更新apt程序包索引,并安装最新版本的Docker Engine和容器

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

2.通过运行hello-world 映像来验证是否正确安装了Docker Engine 

sudo docker run hello-world

3.将非root用户加入docker组,以允许免sudo执行docker

  sudo usermod -aG docker your-user

4.更新用户组

newgrp docker

配置docker开机自启

sudo systemctl enable docker

禁止自启,请用disable

sudo systemctl disable docker

输入docker 查看docker命令

docker

启动docker

systemctl start docker

停止docker 

systemctl stop docker

查看docker状态

 

systemctl status docker

 

 

无穷的伟大,也是从“0”开始的

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


扫一扫关注最新编程教程