文章目录
1、安装docker
参考:撸帝视频
使用 apt 安装:
apt-get update
apt-get -y install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
cat /etc/apt/sources.list # 查看是否增加进去
apt-get update && apt-get install -y docker-ce
使用镜像加速器:
自己用支付宝登录阿里云,进入控制台找镜像加速器就可以了。
tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors":["https://o9bct4bx.mirror.aliyuncs.com"]
}
# 查看是否写入
cat /etc/docker/daemon.json
#重启docker
systemctl restart docker
# 查看是否配置成功
docker info
2、使用docker
引用:https://segmentfault.com/a/1190000038921337