Docker安装

脚本安装

curl -fsSLget.docker.com-oget-docker.sh

sudo sh get-docker.sh--mirror AzureChinaCloud

配置dokcer加速器

如果启动不起来 Dockerd 检查日志

https://www.daocloud.io/mirror

/etc/docker/daemon.json

{"registry-mirrors": ["https://registry.docker-cn.com"]}

apt方式安装

# 更新软件源

sudo apt-get update

# 安装所需依赖

sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common

# 安装 GPG 证书

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

# 新增软件源信息

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

# 再次更新软件源

sudo apt-get -y update

# 安装 Docker CE 版

sudo apt-get -y install docker-ce

你可能感兴趣的:(Docker安装)