17

我有一个 PID 列表,我需要获取他们的 docker 容器名称。另一个方向很容易......通过图像名称获取 docker 容器的 PID:

$ docker inspect --format '{{.State.Pid}}' {SOME DOCKER NAME}

知道如何通过 PID 获取名称吗?

4

4 回答 4

24

像这样的东西?

$ docker ps -q | xargs docker inspect --format '{{.State.Pid}}, {{.ID}}' | grep "^${PID},"

[编辑]

免责声明这是针对“普通”Linux 的。我不知道有关 CoreOS 的任何有用信息,所以这可能会也可能不会在那里工作。

于 2014-06-25T12:18:18.303 回答
12

因为@Mitar 的评论建议应该是一个完整的答案:

要获取容器 ID,您可以使用:

cat /proc/<process-pid>/cgroup

然后将容器 ID 转换为 docker 容器名称:

docker inspect --format '{{.Name}}' "${containerId}" | sed 's/^\///'
于 2017-11-27T23:14:03.163 回答
2

我使用以下脚本来获取容器内进程的任何主机 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"
于 2017-02-02T18:42:48.210 回答
1

...作为单线以及

PID=20168; sudo docker ps --no-trunc | grep $(cat /proc/$PID/cgroup | grep -oE '[0-9a-f]{64}' | head -1) | sed 's/^.* //'

于 2021-04-13T16:08:07.953 回答