What this covers
The one distinction that trips up every beginner: `run` creates a new container, `exec` enters one that's already running.
- The scenario: your web server is running; you want to look inside
- The wrong reaction: docker run — creates a new container
- The right tool: docker exec
- In one line: run creates, exec enters
- Common everyday uses of exec