You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Address Sourcery review: clarify org vs user package paths
- Explain how <owner>/<repo> maps to the GHCR image name in README
- Add separate instructions for org-owned vs personal repos (UI URLs
and CLI endpoints differ)
- Update migration script to auto-detect org vs user and use the
correct API endpoint
- Mention `pixi run dev-use-prebuilt` in the README instructions
Copy file name to clipboardExpand all lines: README.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,15 @@ By default, the devcontainer builds locally from `.devcontainer/Dockerfile`. Thi
63
63
64
64
## Switching to a prebuilt image (optional)
65
65
66
-
A CI workflow (`.github/workflows/devcontainer.yml`) automatically builds and pushes a devcontainer image to GHCR whenever `.devcontainer/` files change on `main`. To use it for faster startup:
66
+
A CI workflow (`.github/workflows/devcontainer.yml`) automatically builds and pushes a devcontainer image to GHCR whenever `.devcontainer/` files change on `main`. The image is published as `ghcr.io/<owner>/<repo>/devcontainer:latest`, where `<owner>` is your GitHub username or organization and `<repo>` is the repository name (e.g. `ghcr.io/myuser/myproject/devcontainer:latest`).
67
+
68
+
You can migrate automatically with:
69
+
70
+
```bash
71
+
pixi run dev-use-prebuilt
72
+
```
73
+
74
+
Or manually:
67
75
68
76
1. Edit `.devcontainer/devcontainer.json`: comment out the `"build"` and `"features"` blocks, uncomment the `"image"` line
69
77
2. Update the image reference to match your repo: `ghcr.io/<owner>/<repo>/devcontainer:latest`
@@ -75,7 +83,8 @@ A CI workflow (`.github/workflows/devcontainer.yml`) automatically builds and pu
0 commit comments