Core Docker Commands (Images, Containers, Compose)

This will cover:

No fluff.


1) Image Building Commands

Basic Build

docker build -t myapp .

Equivalent to:

docker build --tag myapp:latest .

If no tag given → defaults to latest.