docker build으로 client를 보냅니다.Timeout이 될 때

2673 단어 Docker
docker build이 갑자기 실행되지 않을 때의 처리입니다.어쩌면 또 다른 것이 있을지도 모른다.

결론


Client.Timeout 발생

docker restart 했으면 좋겠다.

컨디션

  • Windows10
  • Hyper-V에 docker
  • 설치

    정황


    request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
    이런 일이 생겨서 docker build이 정상적으로 끝날 수 없습니다.
    > docker build .
    Sending build context to Docker daemon  28.46MB
    Step 1/5 : From python:3
    Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
    

    처리하다.


    docker의restart


    작업 표시줄의 docker 아이콘을 마우스 오른쪽 단추로 클릭합니다.



    이 타이밍에 장면으로 나왔지만 다시 시작하고 있습니다.↓
    시간이 좀 걸려요.

    재부팅 후 경고가 표시됩니다.

    이렇게 되면 OK야.

    docker restart 이후

    > docker build .
    Sending build context to Docker daemon  28.46MB
    Step 1/5 : From python:3
    3: Pulling from library/python
    5ae19949497e: Pull complete
    ed3d96a2798e: Pull complete
    f12136850781: Pull complete
    1a9ad5d5550b: Pull complete
    6f18049a0455: Pull complete
    ce39fa9d79d1: Pull complete
    3a91ffcf88ea: Pull complete
    ee82cc8e1506: Pull complete
    bf0dbf90a115: Pull complete
    Digest: sha256:87fd2bad3de70a5e779a91d7e2ec2bd01115dfe3faf97dacf730a7f4155d11d8
    Status: Downloaded newer image for python:3
     ---> 42d620af35be
    (省略)
    Step 5/5 : RUN pip install --upgrade pip
     ---> Running in 2e235b67b06f
    Requirement already up-to-date: pip in /usr/local/lib/python3.7/site-packages (19.1.1)
    Removing intermediate container 2e235b67b06f
     ---> fedda0f62e54
    Successfully built fedda0f62e54
    

    좋은 웹페이지 즐겨찾기