#docker #kubernetes #container #orchestrator #microservice #infrastructure-as-code #devops #ci #cd

제목[Q&A] 도커 이미지를 다운받는 데 발생하는 오류2019-12-12 21:09
작성자

error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.35/info: 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.


도커 이미지를 다운받으려고 하면 위와 같은 오류가 뜨는 경우가 있다. 
이는 docker로의 연결하는 데 걸리는 시간이 초과돼서 뜨는 오류이다.

이를 해결하는 방법 중에는 여러 가지가 있는데 그 중 하나는
docker의 환경설정에 들어가서 General에 있는 Expose daemon on tcp://localhost:2375 without TLS를 눌러주면 된다.
혹은 PowerShell을 관리자 권한으로 실행함으로써 이를 해결할 수 있다. 
댓글