Problem
When following the Docker Compose setup instructions in the README, running without first creating causes Docker to create it as a directory instead of a file. This happens because Docker creates bind-mounted paths as directories if they don't exist.
Root Cause
The Docker Compose section (Option 1) was not self-contained - it assumed users had already completed the Minimal setup steps from a previous section. Users jumping directly to the Docker Compose section would run without existing.
Fix
PR #256 makes both Docker Compose and Docker Run sections fully self-contained by including all prerequisite commands (, ) inline in each code block, plus adding PowerShell equivalents for Windows users.
PR: #256
Problem
When following the Docker Compose setup instructions in the README, running without first creating causes Docker to create it as a directory instead of a file. This happens because Docker creates bind-mounted paths as directories if they don't exist.
Root Cause
The Docker Compose section (Option 1) was not self-contained - it assumed users had already completed the Minimal setup steps from a previous section. Users jumping directly to the Docker Compose section would run without existing.
Fix
PR #256 makes both Docker Compose and Docker Run sections fully self-contained by including all prerequisite commands (, ) inline in each code block, plus adding PowerShell equivalents for Windows users.
PR: #256