dqw7121 2017-11-18 10:02
浏览 33
已采纳

码头工人检查:如何从范围中仅选择某些键

I created an docker image that has few labels, here is my Dockerfile section on LABELS:

grep LABEL Dockerfile

LABEL "css1"="/var/www/css1"
LABEL "css2"="/var/www/css2"
LABEL "img"="/var/www/img"
LABEL "js"="/var/www/js"

Then:

docker image inspect --format='{{.Config.Labels}}' labels-test

map[css1:/var/www/css1 css2:/var/www/css2 img:/var/www/img js:/var/www/js]

I need to get for example all labels starting with css. This is as far as i was able to figure:

docker image inspect --format='{{range $k,$v:=.Config.Labels}}{{$k}}:{{$v}} {{end}}' labels-test

css1:/var/www/css1 css2:/var/www/css2 img:/var/www/img js:/var/www/js

Desired output would be:

css1:/var/www/css1 css2:/var/www/css2
  • 写回答

2条回答 默认 最新

  • douzhi2017 2017-11-18 10:32
    关注

    The Go template functions are available in golang docco

    eq can test if arg1 == arg2.
    printf "%.3s" $k will give you the first 3 chars of a string.

    docker image inspect \
      --format='{{ range $k,$v:=.Config.Labels }}{{ if eq (printf "%.3s" $k) "css" }}{{ $k }}:{{ $v }} {{end}}{{end}}' \
      IMAGE
    

    You might want to look at the querying the Docker API images endpoint /images/IMAGE/json directly or processing the JSON output somewhere if you need to do any more advanced processing:

    docker image inspect \
      --format='{{json .Config.Labels}}' \
      IMAGE
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 java在应用程序里获取不到扬声器设备
  • ¥15 echarts动画效果的问题,请帮我添加一个动画。不要机器人回答。
  • ¥60 许可证msc licensing软件报错显示已有相同版本软件,但是下一步显示无法读取日志目录。
  • ¥15 Attention is all you need 的代码运行
  • ¥15 一个服务器已经有一个系统了如果用usb再装一个系统,原来的系统会被覆盖掉吗
  • ¥15 使用esm_msa1_t12_100M_UR50S蛋白质语言模型进行零样本预测时,终端显示出了sequence handled的进度条,但是并不出结果就自动终止回到命令提示行了是怎么回事:
  • ¥15 前置放大电路与功率放大电路相连放大倍数出现问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系
  • ¥30 VMware 云桌面水印如何添加