To examine runtime configuration, including ENTRYPOINT and CMD, the docker inspect command is used.
A is correct: docker inspect provides detailed JSON-formatted output with ENTRYPOINT, command, volumes, environment variables, etc.
Incorrect Options:
B: Invalid command.
C: Shows running containers and basic status, not configuration.
D: Displays logs, not config parameters.
[Reference:, CompTIA Linux+ XK0-005 Study Guide, Chapter 12, man docker-inspect, , , ]
Submit