如何格式化docker API?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何格式化docker API?相关的知识,希望对你有一定的参考价值。
我们如何使用docker命令格式化docker API输出,例如
docker inspect <Image id> --format "{{json .Tag}}"
命令为您提供主机上可用的所有图像的标记列表。
如何使用docker API获取此格式化信息?
例如http:localhost/images/<image id>/json?<something..>
答案
Docker的API不支持任何格式化。 --format
标志仅在客户端实现。您可能希望查看像https://stedolan.github.io/jq/这样的工具来进行格式化。
以上是关于如何格式化docker API?的主要内容,如果未能解决你的问题,请参考以下文章