What command is used to stop a running Docker container?
Docker FundamentalsEasy
Docker Fundamentals — Easy
What command is used to stop a running Docker container?
Explanation
To stop a running Docker container, the correct command is "docker stop." This command gracefully stops the container. Options like "docker kill" force stop the container, "docker pause" suspends the container, and "docker halt" is not a valid Docker command.