$ docker images
Gethttp://127.0.0.1:2375/v1.19/images/json: dial tcp 127.0.0.1:2375: ConnectEx tcp: No connection could be made because the target machine actively refused it.. Are you trying to connect to a TLS-enabled daemon without TLS?
In
boot2docker start
After that, the following three environment variables need to be set:DOCKER_HOST
,DOCKER_CERT_PATH
,DOCKER_TLS_VERIFY
.If boot2docker starts successfully under windows, you will be prompted as follows:
To connect the Docker client to the Docker daemon, please set: If you are running inside Windows Command Prompt (cmd.exe), copy and paste the following commands to your terminal to set the environment variables: set DOCKER_HOST=tcp://192.168.59.103:2376 set DOCKER_CERT_PATH=C:\Users\${user}\.boot2docker\certs\boot2docker-vm set DOCKER_TLS_VERIFY=1 If you are running inside PowerShell, copy or paste the following commands to your shell or run "boot2docker shellinit | Invoke-Expression" to set the environment variables: $Env:DOCKER_HOST = "tcp://192.168.59.103:2376" $Env:DOCKER_CERT_PATH = "C:\Users\${user}\.boot2docker\certs\boot2docker-vm" $Env:DOCKER_TLS_VERIFY = "1"
Copy and execute the three environment variables mentioned above, for example, in cmd of windows:
set DOCKER_HOST=tcp://192.168.59.103:2376 set DOCKER_CERT_PATH=C:\Users\${user}\.boot2docker\certs\boot2docker-vm set DOCKER_TLS_VERIFY=1