See full command of running/stopped container in Docker
Solution 1:
docker ps --no-trunc
will display the full command along with the other details of the running containers.
Solution 2:
Use:
docker inspect -f "{{.Name}} {{.Config.Cmd}}" $(docker ps -a -q)
... it does a "docker inspect" for all containers.