首页 >后端开发 >Golang >如何使用'docker inform”检索 Docker 中的点分隔标签?

如何使用'docker inform”检索 Docker 中的点分隔标签?

Barbara Streisand
Barbara Streisand原创
2024-11-09 15:06:02730浏览

How to Retrieve Dot-Delimited Labels in Docker with `docker inspect`?

导航点分隔的 Docker 映像标签

Docker 检查命令在检索与 Docker 映像关联的标签方面被证明是有价值的。使用 --format 选项,可以使用 Go 模板方便地访问标签值。然而,在处理名称中包含点(“.”)的标签时,就会出现挑战。

点式标签名称的挑战

如下面的代码所示,使用 --format 选项无法检索名称中带有点的标签:

# Dockerfile
FROM busybox
LABEL foo="bar"
LABEL com.wherever.foo="bang"

# Build the image
$ docker build -t foo .

# Attempt to retrieve the label using --format
$ docker inspect -f '{{ .Config.Labels.com.wherever.foo }}' foo
<no value>

解决问题索引函数

要访问点标签,请使用索引函数,它允许从地图中检索任意字符串。这样就无需解析 dockerspect 的 JSON 输出。

# Using the index function
$ docker inspect -f '{{ index .Config.Labels "com.wherever.foo" }}' foo
bang

以上是如何使用'docker inform”检索 Docker 中的点分隔标签?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn