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 "{{.Path}} {{.Args}} ({{.Id}})" $(docker ps -a -q)
That will display the command path and arguments, similar to docker ps.
docker ps