Reputation: 10314
I'm receiving the following error in docker on windows 10 laptop. I've try to reinstall and restart but nothing helps.
The docker service is running OK but what i understand that i have a problem with the docker daemon (from what i read)
The whole issue started when i run the 2 commands:
net stop com.docker.service
net start com.docker.service
from there on i keep getting the error below and cannot solve it.
C:\Users\xxxx>docker images error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.30/images/json: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect. This error may also indicate that the docker daemon is not running.
anyone succeed to solve it?
Upvotes: 3
Views: 6946
Reputation: 196
I run Docker remotely as a non admin user.
Restart your docker daemon and Docker service.
Restart the running Docker instance[Docker for Windows] if required. You do not have to reinstall.
Upvotes: 0
Reputation: 51876
docker client must be run elevated to connect
This indicates that you do not have enough permissions. Try starting the terminal as administrator.
Upvotes: 3