Which command starts a new Docker container from an image?
Docker FundamentalsEasy
Docker Fundamentals — Easy
Which command starts a new Docker container from an image?
Explanation
To start a new Docker container from an image, the correct command is "docker run." This command not only creates a new container but also starts it. Options A and B are incorrect because "docker start" only starts an existing container, and "docker create" only creates a container without starting it. Option D, "docker exec," is used to execute a command inside a running container.