Goal: Use a free, browser-based Docker environment to directly observe container startup speed and filesystem contents, then reason about how the same workload would behave on VMs. Steps:
time docker run -it ubuntu bash. Note the wall-clock time it took to become interactive.cat /etc/os-release and ls / to see what's actually present in the image. Type exit to leave the container.time docker run -it alpine sh. Again run cat /etc/os-release and ls /, then exit.docker images to see the on-disk size of the ubuntu and alpine images side by side.docker run -d --name c1 alpine sleep 300 (repeat with c2, c3, c4 names). Run docker stats --no-stream to capture a snapshot of CPU and memory usage across all running containers.docker stats output and your cat /etc/os-release results for both images.Deliverables: Submit your written comparison (150–250 words) plus your terminal evidence (screenshot or pasted text showing docker stats, both os-release outputs, and docker images) as a single upload or text entry.