Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Docker 远程 API(API v1.6,Docker 0.6.5)。我正在通过 POST /build 端点构建图像。FWIW,我的客户是用 Go 编写的。有没有一种方法可以获取我刚刚创建的图像的图像 ID,而无需从流式响应文本中解析出来?
您可以在构建期间为其命名(例如repo:tag),然后使用GET /images/(tag name)/json. (文档)
GET /images/(tag name)/json
json 信息包括 id,以及显示图像最初是如何创建的“配置”。