我有一个 PID 列表,我需要获取他们的 docker 容器名称。另一个方向很容易......通过图像名称获取 docker 容器的 PID:
$ docker inspect --format '{{.State.Pid}}' {SOME DOCKER NAME}
知道如何通过 PID 获取名称吗?
像这样的东西?
$ docker ps -q | xargs docker inspect --format '{{.State.Pid}}, {{.ID}}' | grep "^${PID},"
[编辑]
免责声明这是针对“普通”Linux 的。我不知道有关 CoreOS 的任何有用信息,所以这可能会也可能不会在那里工作。
因为@Mitar 的评论建议应该是一个完整的答案:
要获取容器 ID,您可以使用:
cat /proc/<process-pid>/cgroup
然后将容器 ID 转换为 docker 容器名称:
docker inspect --format '{{.Name}}' "${containerId}" | sed 's/^\///'
我使用以下脚本来获取容器内进程的任何主机 PID 的容器名称:
#!/bin/bash -e
# Prints the name of the container inside which the process with a PID on the host is.
function getName {
local pid="$1"
if [[ -z "$pid" ]]; then
echo "Missing host PID argument."
exit 1
fi
if [ "$pid" -eq "1" ]; then
echo "Unable to resolve host PID to a container name."
exit 2
fi
# ps returns values potentially padded with spaces, so we pass them as they are without quoting.
local parentPid="$(ps -o ppid= -p $pid)"
local containerId="$(ps -o args= -f -p $parentPid | grep docker-containerd-shim | cut -d ' ' -f 2)"
if [[ -n "$containerId" ]]; then
local containerName="$(docker inspect --format '{{.Name}}' "$containerId" | sed 's/^\///')"
if [[ -n "$containerName" ]]; then
echo "$containerName"
else
echo "$containerId"
fi
else
getName "$parentPid"
fi
}
getName "$1"
...作为单线以及
PID=20168; sudo docker ps --no-trunc | grep $(cat /proc/$PID/cgroup | grep -oE '[0-9a-f]{64}' | head -1) | sed 's/^.* //'