본문 바로가기
인프라

Docker 실행 오류 (error during connect: This error may indicate that the docker daemon is not running)

by 아이티이즈 2024. 7. 24.

Windows 에 Docker를 설치하고 실행 중 아래와 같은 오류가 발생하며 실행 되지 않는 문제가 있었습니다. 

PS PS C:\Users\C:\> docker run -d -p 80:80 docker/getting-started
docker: error during connect: This error may indicate that the docker daemon is not running.:
 Post "http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/containers/create": open //./pipe/docker_
engine: The system cannot find the file specified.

 

 

구글 검색으로 아래 명령어를 실행하니 문제가 해결 되었다 .

PS C:\> cd "C:\Program Files\Docker\Docker\"
PS C:\Program Files\Docker\Docker> .\DockerCli.exe -SwitchDaemon

 

 

참조

https://github.com/docker/for-win/issues/1825