ubuntu下自带了docker的库,不需要添加新的源。
但是ubuntu自带的docker版本太低,需要先卸载旧的再安装新的。
1.卸载旧版本
sudo apt-get remove docker docker-engine docker.io containerd runc
2.安装前提依赖
sudo apt update && sudo apt-get install ca-certificates curl gnupg lsb-release
3.安装GPG证书
sudo curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
4.写入软件源信息
sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
非大陆执行:
sudo add-apt-repository "deb [arch=amd64] http://mirrors.cloud.aliyuncs.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
5.安装新版本
sudo apt-get install docker-ce docker-ce-cli containerd.io
6.配置用户组
sudo groupadd docker
为了避免每次命令都要输入sudo,可以设置当前用户到docker用户组,注销重新登录生效
sudo gpasswd -a $USER docker
或者
sudo usermod -a -G docker $USER
然后更新docker用户组
newgrp docker
7.启动docker
sudo systemctl start docker
8.docker换源
修改 /etc/docker/daemon.json (如果该文件不存在,则创建)
{
"registry-mirrors": [
"https://hub-mirror.c.163.com"
]
}
安装必要的一些系统工具
apt-get -y install apt-transport-https ca-certificates curl software-properties-common
添加 docker 配置 /etc/docker/daemon.json
{
"exec-opts": ["native.cgroupdriver=systemd"],
"log-driver": "json-file",
"log-opts": {
"max-size": "100m"
},
"storage-driver": "overlay2",
"registry-mirrors": ["docker镜像仓库国内加速"]
}
重启 docker
service docker restart
评论 (0)