我在我的代理后面创建了一个docker机器。首先,我无法拉动图像。我用:
重建了机器docker-machine create -d virtualbox \
--engine-env HTTP_PROXY=http://xx:8080/ \
--engine-env HTTPS_PROXY=http://xx:8080/ \
docker-machine
现在我能够提取图像,启动容器,但问题是当我尝试使用Dockerfile创建自己的图像时:
Dockerfile:
FROM ubuntu
RUN apt-get -y update
错误:
Step 2/2 : RUN apt-get -y update
---> Running in 31050162ef49
Err:1 http://security.ubuntu.com/ubuntu xenial-security InRelease
Temporary failure resolving 'security.ubuntu.com'
Err:2 http://archive.ubuntu.com/ubuntu xenial InRelease
Temporary failure resolving 'archive.ubuntu.com'
我的代理设置已设置。我也尝试将它们放在我的Dockerfile中,但它仍然失败。有什么问题?