During a municipal Docker lab, the team builds and tags dna-collector:1.2, then starts a process from that tag. Which statement is correct?
Select an answer to reveal the explanation.
Short Explanation
The blueprint is the image; the house you live in is the container. You build and tag the blueprint, then run to start an instance—don’t swap the names.
Full Explanation
docker build produces an image—a filesystem plus default command—that you tag. docker run starts a container, a running instance of that image. Confusing image with container, or assuming build creates Kubernetes Pods or Deployments, misses the 4.4 distinction.