docker api 開發(fā)的端口怎么獲取?
問題描述
新版本的docker for Mac去除了docker-machine指令我現(xiàn)在怎么獲取 rest api 開發(fā)的端口呢?比如:curl -XGET http://localhost:2376/images/... | python -mjson.tool
可是,貌似不是上面的2376端口。謝謝指教。
問題解答
回答1:我這里通過一種折中的辦法環(huán)境:MacOS在shell里敲入:vim ~/.bash_profile ,在文件的末尾鍵入下面代碼
alias dest=’rest_fun(){ curl --unix-socket /var/run/docker.sock http:$1 | python -mjson.tool ;};rest_fun $1’
保存退出,重啟shell。然后就可以使用dest指令實(shí)現(xiàn)一些功能,如羅列images:dest /images/json
默認(rèn)使用的/var/run/docker.sock進(jìn)行通信, 可以使用-H參數(shù)指定相應(yīng)的監(jiān)聽端口如果使用的是默認(rèn)的socket通信模式的話 可以使用curl的unix-socket方式進(jìn)行測(cè)試
curl --unix-socket /var/run/docker.sock http:/v1.24/info
上述的指令在
Server: Version: 1.12.1 API version: 1.24
可以正常執(zhí)行
回答3:這里的端口取決于你docker daemon綁定的端口。
如果daemon運(yùn)行時(shí)沒有指定端口,默認(rèn)用unix:///var/run/docker.sock
By default the Docker daemon listens on unix:///var/run/docker.sock and the client must have root access to interact with the daemon. If a group named docker exists on your system, docker applies ownership of the socket to the group.https://docs.docker.com/engin...
例如運(yùn)行時(shí):
docker -d -H unix:///var/run/docker.sock -H 0.0.0.0:2376
相當(dāng)于將默認(rèn)的socket綁定在本機(jī)的2376,也就是你說的http://localhost:2376
回答4:不想改配置文件的話, 直接使用鏡像來代理就好了。 注意掛載/var/run/docker.sock
docker run -d -ti -p 2375:2375 -v /var/run/docker.sock:/var/run/docker.sock ehazlett/docker-proxy:latest -i
相關(guān)文章:
1. dockerfile - [docker build image失敗- npm install]2. css3 - CSS中first-child無效3. 前端 - 請(qǐng)教一下CSS3中translateZ和rotateY書寫順序的問題4. css3 實(shí)現(xiàn)一個(gè)線性漸變出現(xiàn)的問題?5. javascript - 微信同屏播放器,長(zhǎng)按二維碼無法識(shí)別6. javascript - sublime快鍵鍵問題7. javascript - 如何使用js主動(dòng)觸發(fā)事件?8. css - 移動(dòng)端字體設(shè)置問題9. javascript - 微信內(nèi)置瀏覽器的ua是多少?10. java - PHP開發(fā)微信無法獲取到signature,timestamp,nonce
![dockerfile - [docker build image失敗- npm install]](http://www.gepszalag.com/attached/image/news/202311/1028105a80.png)