Docker error in windows
error:
error during connect: In the default daemon configuration on Windows, the docker client must be run with elevated privileges to connect.: Get "http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/version": open //./pipe/docker_engine: The system cannot find the file specified.
fix:
run ps in admin mode,
& 'C:\Program Files\Docker\Docker\DockerCli.exe' -SwitchDaemon
cd "C:\Program Files\Docker\Docker" ; ./DockerCli.exe -SwitchDaemon
switch has to be executed twice.
Comments