1.更新系统
sudo apt-get update
2.安装docker
sudo apt-get install docker.io
3.配置阿里的加速器(对于国内用户这是非常有必要的)
curl -sSL http://acs-public-mirror.oss-cn-hangzhou.aliyuncs.com/docker-engine/internet | sh -
注册阿里云开发者帐号帐号:https://cr.console.aliyun.com/
登陆后取得专属加速器地址,类似这样https://xxxxxx.mirror.aliyuncs.com
我的是ubuntu14.04系统,所以使用14.04的配置方式(直接复上图阿里给出的命令即可).
echo "DOCKER_OPTS=\"\$DOCKER_OPTS --registry-mirror=https://??????.mirror.aliyuncs.com\"" | sudo tee -a /etc/default/docker
然后重启docker服务
sudo service docker restart
5.测试一下
随便拉一个nginx服务器镜像试一试:
docker pull nginx
如果显示如上图则安装配置完成