Make checkrr architecture tag configurable via CHECKRR_IMAGE_TAG#46
Conversation
checkrr has no multi-arch image, so the tag was hard-coded to
latest-amd64, forcing arm64 users to edit the tracked compose file.
Use ${CHECKRR_IMAGE_TAG:-latest-amd64} instead — matching the
${VAR:-default} pattern already used for GRAFANA_PORT and LOCAL_NETWORK
— and document CHECKRR_IMAGE_TAG=latest-arm64v8 in .env.example for
arm64 deployments. Default behavior is unchanged.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
Warning Review limit reached
Next review available in: 51 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Context
Follow-up to a CodeRabbit nitpick on #44: checkrr's tag was hard-coded to
latest-amd64(checkrr publishes no multi-arch image), so arm64 users had to edit the trackeddocker-compose.ymlbeforedocker compose up -dwould work.Change
Make the tag an env override with the amd64 tag as the default:
This matches the
${VAR:-default}pattern already used forGRAFANA_PORTandLOCAL_NETWORK. AddedCHECKRR_IMAGE_TAG=latest-amd64to.env.examplewith a note that arm64 hosts set it tolatest-arm64v8. Default behavior is unchanged — amd64 users need to do nothing.Testing
docker compose config --imagesverified in three cases:.env.examplevalue) →latest-amd64CHECKRR_IMAGE_TAG=latest-arm64v8→latest-arm64v8latest-amd64🤖 Generated with Claude Code