日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

docker run hello-world 遇到错误消息 - error during connect

發布時間:2023/12/19 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 docker run hello-world 遇到错误消息 - error during connect 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

執行命令行:

docker run hello-world

遇到錯誤消息:

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.
See ‘docker run --help’.

錯誤消息里已經解釋清楚原因了:docker daemon 沒有啟動。

進到文件夾:C:\Program Files\Docker\Docker

執行 DockerCli -switchDaemon 之后,

任務欄里看到這個 icon:

之后執行成功:

這條消息打印的背后,執行了這些事情:

(1) The Docker client contacted the Docker daemon.

Docker 客戶端同 docker daemon 連接

(2) The Docker daemon pulled the “hello-world” image from the Docker Hub.
(windows-amd64, nanoserver-1809)

因為這個命令是第一次執行,Docker daemon 從 docker hub 網站,將 hello-world 鏡像下載到本地。

(3) The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading.

Docker daemon 基于下載好的鏡像,創建一個新的容器,后者運行鏡像,產生一條輸出消息

(4) The Docker daemon streamed that output to the Docker client, which sent it to your terminal.

Docker daemon 將輸出發給 docker 客戶端,后者再發到 Windows 控制臺。

更多Jerry的原創文章,盡在:“汪子熙”:

總結

以上是生活随笔為你收集整理的docker run hello-world 遇到错误消息 - error during connect的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。