ubuntu安装Docker

docker的ubuntu官网安装教程

更新库

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

 sudo apt-get update

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

删除已安装的docker

for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt-get remove $pkg; done

添加GPG密钥

阿里源

curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | apt-key add -

清华源

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

添加docker软件源

阿里源

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

清华源

sudo add-apt-repository "deb [arch=amd64] https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/ubuntu $(lsb_release -cs) stable"

如果清华源失败,添加https证书

apt-get install ca-certificates --reinstall

安装 Docker 引擎

更新包索引,并安装最新版本的 docker-ce,docker-ce-cli,containerd.io,docker-compose-plugin:

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

配置多仓库

vim /etc/docker/daemon.json

写入内容

{
  "registry-mirrors": ["https://docker.mirrors.ustc.edu.cn",
		       "https://registry.docker-cn.com",
  		       "http://hub-mirror.c.163.com" ]
}

重启docker

# 重启dockers使配置生效
systemctl restart docker
# 查看所有容器
docker ps -a
# 重启容器
docker start [container_id] #启动容器 

你可能感兴趣的:(ubuntu,docker,linux)