CoreOS - 通过PID获取docker容器名称?

时间:2014-06-25 10:55:44

标签: linux bash docker coreos nsenter

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

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

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

4 个答案:

答案 0 :(得分:15)

这样的东西?

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

[编辑]

  

免责声明这适用于"正常" Linux操作系统。我不知道有关CoreOS的任何有用信息,所以这可能会或可能不会在那里工作。

答案 1 :(得分:3)

因为@Mitar的评论建议值得一个完整的答案:

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

cat /proc/<process-pid>/cgroup

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

docker inspect --format '{{.Name}}' "${containerId}" | sed 's/^\///'

答案 2 :(得分:1)

... 也可以作为单线

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

答案 3 :(得分:0)

我使用以下脚本获取容器内进程的任何主机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"