web-dev-qa-db-ja.com

CoreOS-PIDでDockerコンテナー名を取得しますか?

PIDのリストがあり、それらのDockerコンテナー名を取得する必要があります。別の方向に行くのは簡単です...イメージ名でDockerコンテナーのPIDを取得します。

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

PIDで名前を取得する方法はありますか?

14
Nimrod007

このようなもの?

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

[編集]

免責事項これは「通常の」Linux用です。私はCoreOSについて何も有用なことを知らないので、これはそこで動作するかもしれないし動作しないかもしれません。

18
ivant

@Mitarのコメント提案は完全な回答に値するので、

コンテナーIDを取得するには、以下を使用できます。

cat /proc/<process-pid>/cgroup

次に、コンテナーIDをdockerコンテナー名に変換します。

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

次のスクリプトを使用して、コンテナー内のプロセスの任意のホスト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"
0
Mitar