新版本的docker for Mac去除了docker-machine指令我现在怎么获取 rest api 开发的端口呢?比如:curl -XGET http://localhost:2376/images/... | python -mjson.tool可是,貌似不是上面的2376端口。谢谢指教。
2 回答
holdtom
TA贡献1805条经验 获得超10个赞
我这里通过一种折中的办法
环境: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指令实现一些功能,如罗列images:
dest /images/json
- 2 回答
- 0 关注
- 1183 浏览
添加回答
举报
0/150
提交
取消