如何排序或排序结果docker ps --format?
格式化和订购 docker ps 列出容器
docker ps 格式
docker ps -a --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}" | (read -r; printf "%s\n" "$REPLY"; sort -k 3 ) 概要
docker ps [--format="TEMPLATE"]
--format="TEMPLATE" Pretty-print containers using a Go template. Valid placeholders: .ID - Container ID .Image - Image ID .Command - Quoted command .CreatedAt - Time when the container was created. .RunningFor - Elapsed time since the container was started. .Ports - Exposed ports. .Status - Container status. .Size - Container disk size. .Names - Container names. .Labels - All labels assigned to the container. .Label - Value of a specific label for this container. For example {{.Label "com.docker.swarm.cpu"}} .Mounts - Names of the volumes mounted in this container. 显示容器及其命令
docker ps --format "{{.ID}}: {{.Command}}" 在表格中显示带有标签的容器
docker ps --format "table {{.ID}}\t{{.Labels}}" 在表中显示带有节点标签的容器
docker ps --format 'table {{.ID}}\t{{(.Label "com.docker.swarm.node")}}'
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。