Process Flow - Building images in Compose
Write Dockerfile
Define service in docker-compose.yml with build context
Run 'docker compose build'
Docker reads Dockerfile
Docker builds image step-by-step
Image created and tagged
Ready to run containers with new image
This flow shows how Docker Compose builds an image from a Dockerfile by reading the build context and creating the image step-by-step before running containers.