되면한다

에러: Head https://registry-1.docker.io/v2/library/node/manifests/alpine: net/http: TLS handshake timeout 본문

도커

에러: Head https://registry-1.docker.io/v2/library/node/manifests/alpine: net/http: TLS handshake timeout

haeullee 2021. 5. 18. 13:40
$ docker build -f Dockerfile.dev .
Sending build context to Docker daemon  183.6MB
Step 1/6 : FROM node:alpine
Head https://registry-1.docker.io/v2/library/node/manifests/alpine: net/http: TLS handshake timeout

 

인터넷 커넥션이 느려서 나타나는 오류라고 한다.

해결방법:

1. faster internet connection으로 바꾸기 (와이파이를 사용하고 있는 경우, LAN을 사용해본다.)

2. 다음 명령어 사용

$ sudo systemctl restart docker

 

1번 방법 귀찮아서 2번으로 했는데 바로 해결됐다.

 

참고:

https://stackoverflow.com/questions/52252791/error-get-https-registry-1-docker-io-v2-net-http-tls-handshake-timeout-in

 

ERROR: Get https://registry-1.docker.io/v2/: net/http: TLS handshake timeout in Docker

I went through this link: Docker push - net/http: TLS handshake timeout, but it did not solved my issue. I am simply running the https://github.com/sqshq/PiggyMetrics using the docker-compose up co...

stackoverflow.com

 

'도커' 카테고리의 다른 글

컨테이너 가상화 기술  (0) 2021.05.15
도커 permission denied  (0) 2021.05.15
03. 도커 이미지와 도커 컨테이너  (0) 2021.05.14
02. 도커 설치하기(우분투 20.04)  (0) 2021.05.14
01. 도커를 쓰는 이유  (0) 2021.05.14
Comments