在Ubuntu16.04中安装docker ce,安装步骤按照官网说明https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#install-using-the-repository。
在第三步Add Docker’s official GPG key:中遇到问题:
[sudo] benxu 的密码: curl:7()Failed to connect to 127.0.0.1 port 39031:拒绝连接
解决办法:
1.增加新的GPG 密钥
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
2.重复curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
显示OK。
Ubuntu16.04安装Docker CE并配置加速器:http://www.linuxdiyf.com/linux/29609.html