I am attempting to download centos image in \"Docker quickstart terminal\" with command
docker pull centos:7
with result
Pu
This usually is a proxy issue: if you are using a proxy to access internet, make sure to:
For instance, on my Windows, using VirtualBox:
docker-machine create -d virtualbox \
--engine-env HTTP_PROXY=$http_proxy --engine-env HTTPS_PROXY=$https_proxy \
--engine-env http_proxy=$http_proxy --engine-env https_proxy=$https_proxy \
--engine-env NO_PROXY=$no_proxy --engine-env no_proxy=$no_proxy
aMachine
That will create the right /var/lib/boot2docker/profile setting file, with those variables declared in it, allowing docker daemon to access the internet.
The quickstart terminal opens by default an ssh session to the "default
" VM.
That is the same as docker-machine ssh default
.
If that default
VM misses the right docker profile, you can docker-machine rm
it, and recreate it, this time using --engine-env
.