Q. How do you start a container in the background (detached mode)?
β
Correct Answer: (A)
docker run -d
Explanation: The '-d' flag in the 'docker run' command is used to run the container in detached mode (in the background).