赞
踩
本文介绍用Ubuntu的apt-get命令安装docker时提示docker-ce不可用的解决方法。
Package docker-ce is not available, but is referred to by another package
此版本的源中没有docker-ce的安装包,所以报错。解决办法:使用旧版本的docker仓库(本处用的是bionic)。
sudo add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
然后执行:
sudo apt-get update
备注:
移除某个源的方法是:
sudo add-apt-repository -r "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
/etc/apt/sources.list.d/docker.list 中添加下面内容(此文件若不存在则新建)
deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable
命令如下:
- cd /etc/apt/sources.list.d;
- sudo touch docker.list;
- sudo chmod 666 docker.list;
- sudo echo "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable" > docker.list;
然后执行:
sudo apt-get update
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。