pooney

 

Window에서 Docker 명령어 실행 시 아래와 같은 에러가 발생하여 아무런 Docker 명령어를 사용 할 수 없는 문제가 발생하였다.  

All Docker commands fail with "unable to resolve docker endpoint"

 

일반적으로는 Docker를 삭제하고 다시 설치하면 해결 되지만 안되는 경우에는 Docker 시스템 및  환경변수가 제대로 삭제되지 않아 발생 하는 문제였다.

 

 

PowerShell 을 실행하고 아래와 같은 명령어를 입력하니 정상 작동하였다.

[Environment]::SetEnvironmentVariable("DOCKER_CERT_PATH", $null, "User")

[Environment]::SetEnvironmentVariable("DOCKER_HOST", $null, "User")

[Environment]::SetEnvironmentVariable("DOCKER_MACHINE_NAME", $null, "User")

[Environment]::SetEnvironmentVariable("DOCKER_TLS_VERIFY", $null, "User")

[Environment]::SetEnvironmentVariable("DOCKER_TOOLBOX_INSTALL_PATH", $null, "User")

 

 

 

 

https://stackoverflow.com/questions/49679818/docker-could-not-read-ca-certificate

 

Docker: could not read CA certificate

I installed Docker on Windows 10 Pro and I can't get it to work. When I try to run hello-world I get could not read CA certificate It's looking for the certificates in the machine/machines/defa...

stackoverflow.com

 

 

 

 

profile

pooney

@pooney

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!