溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Docker環(huán)境搭建會(huì)遇到什么問(wèn)題

發(fā)布時(shí)間:2021-11-18 17:01:23 來(lái)源:億速云 閱讀:126 作者:小新 欄目:云計(jì)算

小編給大家分享一下Docker環(huán)境搭建會(huì)遇到什么問(wèn)題,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

  • pull/search img失敗, 現(xiàn)實(shí)網(wǎng)絡(luò)(proxy, etc)原因:

I had the same problem this morning and the following fixed it for me:

$ docker-machine restart default      # Restart the environment
$ eval $(docker-machine env default)  # Refresh your environment settings

It appears that this is due to the Docker virtual machine getting itself into a strange state.

ref: http://stackoverflow.com/questions/31990757/network-timed-out-while-trying-to-connect-to-https-index-docker-io

  • 將自己的img推送到DockerHub

http://geek.csdn.net/news/detail/35121

  • 停止所有容器,刪除所有容器,刪除所有鏡像

reference:  https://segmentfault.com/a/1190000000482229

docker kill $(docker ps -q) ; docker rm $(docker ps -a -q) ; docker rmi $(docker images -q -a)

看完了這篇文章,相信你對(duì)“Docker環(huán)境搭建會(huì)遇到什么問(wèn)題”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI