docker使用阿里云代理下载image
sudo HTTP_PROXY=http://xxx:port docker -d &
启动docker 维护进程,附带代理选项。
阿里云apt-get install squid 然后配置一下,
参照http://gehailong.blog.51cto.com/765312/263905这个链接。
或者
export http_proxy=<your proxy> export https_proxy=$http_proxy
在.bashrc里面用这个
用环境变量里的代理
sudo -E docker -d &
貌似阿里云被墙了,没办法了,找到一些国内的镜像tar。
比如http://docker.widuu.com/ 这里面有些镜像
下载下来 然后 docker load < ubuntu.tar(镜像文件路劲)
docker images 就会发现新的镜像,那个就能用了。