Skip to content

Commit 4f734ef

Browse files
committed
Fix Docker Compose service name in AGENTS.md — use app instead of nonexistent mkdocs/python services (PR #118 review feedback)
1 parent 0effd0e commit 4f734ef

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

AGENTS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

2222
All 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
```

0 commit comments

Comments
 (0)