view scripts/pid2name.sh @ 99:5387d0997596 release/v1.1.0

DEP-12: include override file in import commands
author smith@nwoca.org
date Mon, 10 Apr 2017 18:46:19 +0100
parents aa2fd199ba56
children
line wrap: on
line source
#!/bin/bash
# determines the docker container name of a PID on docker host.
docker ps -q | xargs docker inspect --format '{{.State.Pid}} {{.Name}}' \
     | grep "^${1?specify pid of process on host}" |  sed 's/^.*\///g'