File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,17 +15,17 @@ Weekly Dev Chat website — MkDocs Material static site. Read `mkdocs.yml` and r
1515
1616- Pushing to ` main ` triggers automatic deployment to production. Do not push without explicit approval.
1717- Do not modify ` .github/workflows/ci.yml ` unless explicitly asked.
18- - Verify changes build cleanly with ` docker compose run mkdocs serve ` before committing.
18+ - Verify changes build cleanly with ` docker compose run --rm app mkdocs serve ` before committing.
1919
2020## Using Docker Compose
2121
2222All Python, mkdocs, and similar commands should run via Docker Compose to ensure consistent Python versions:
2323
2424``` bash
25- docker compose run --rm mkdocs < command>
25+ docker compose run --rm app < command>
2626
2727# Examples:
28- docker compose run --rm mkdocs serve
29- docker compose run --rm mkdocs build
30- docker compose run --rm python -m pip list
28+ docker compose run --rm app mkdocs serve
29+ docker compose run --rm app mkdocs build
30+ docker compose run --rm app python -m pip list
3131```
You can’t perform that action at this time.
0 commit comments