docker api 开发的端口怎么获取? 财富值13

2016-10-12 13:53发布

新版本的docker for Mac去除了docker-machine指令
我现在怎么获取 rest api 开发的端口呢?
比如:
curl -XGET http://localhost:2376/images/... | python -mjson.tool

可是,貌似不是上面的2376端口。
谢谢指教。

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
5条回答

相当于将默认的socket绑定在本机的2376,也就是你说的http://localhost:2376

如果daemon运行时没有指定端口,默认用unix:///var/run/docker.sock

这里的端口取决于你docker daemon绑定的端口。

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...

例如运行时:

一周热门 更多>