How can I see the full command of a running container/process in Docker?
$ docker ps --all CONTAINER ID IMAGE COMMAND CREATED
Use:
docker inspect -f "{{.Name}} {{.Config.Cmd}}" $(docker ps -a -q)
... it does a "docker inspect" for all containers.