I have a docker image installed and I\'d like to check what is its CMD command. Is there any cli command to do so? for example, I\'d like it to tell me that this docker image CM
If it's running, you can use
docker inspect -f "{{.Path}} {{.Args}} ({{.Id}})" $(docker ps -a -q)
Shamlessley pulled from this response