fix(compose): ui overlay straggler from the env.local-optional fix (#2374) - #2403
Conversation
…2374) The split regeneration in #2374 updated docker-compose.ui.yml too, but only docker-compose.yml and docker-compose.core.yml were committed. Same change: per-node local env file becomes path/required:false so nodes without it can bring the UI up. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Warning Review limit reached
Next review available in: 10 minutes You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. 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: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
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 |
Docker Hardening ValidationHardening Validation ReportValidated: Tue Aug 4 23:04:34 UTC 2026Services CheckedPMOVES.AI Docker Hardening Validation[INFO] Checking: pmoves/docker-compose.hardened.yml [INFO] Validating: hi-rag-gateway-v2 [INFO] Validating: extract-worker [INFO] Validating: langextract [INFO] Validating: presign [INFO] Validating: render-webhook [INFO] Validating: retrieval-eval [INFO] Validating: pdf-ingest [INFO] Validating: jellyfin-bridge [INFO] Validating: invidious-companion-proxy [INFO] Validating: ffmpeg-whisper [INFO] Validating: media-video [INFO] Validating: media-audio [INFO] Validating: hi-rag-gateway-v2-gpu [INFO] Validating: hi-rag-gateway-gpu [INFO] Validating: deepresearch [INFO] Validating: supaserch [INFO] Validating: publisher-discord [INFO] Validating: mesh-agent [INFO] Validating: nats-echo-req [INFO] Validating: nats-echo-res [INFO] Validating: comfy-watcher [INFO] Validating: grayjay-plugin-host [INFO] Validating: agent-zero [INFO] Validating: p7-room-orchestrator [INFO] Validating: archon [INFO] Validating: channel-monitor [INFO] Validating: pmoves-yt [INFO] Validating: notebook-sync [INFO] Validating: supabase_service_role_key [INFO] Validating: supabase_jwt_secret [INFO] Validating: p7_control_token ====================================== |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 16786d1115
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| - path: env.shared | ||
| required: false | ||
| - path: env.tier-ui | ||
| required: false |
There was a problem hiding this comment.
Keep shared UI env files required
This expansion makes env.shared and env.tier-ui optional for pmoves-ui, not just the per-node .env.local file. The intended fix below for the Grayjay services only marks .env.local optional, while this service can now come up on a node where env-setup was skipped or env.tier-ui is missing, leaving Supabase keys/URLs empty and causing /api/health to degrade instead of failing fast at Compose config load. Keep the shared/tier files in short form (or required: true) and reserve required: false for .env.local.
AGENTS.md reference: pmoves/AGENTS.md:L214-L214
Useful? React with 👍 / 👎.
Closes the env.local stragglers from #2374 + #2403. PR #2374 made .env.local an opt-in env_file (long-form path: ... required: false) in the main compose + core overlay + ui overlay. PR #2403 caught the remaining ui-overlay stragglers. This PR is the rest: 4 services across 3 hand-maintained overlay files (agentgym, gpu-image, n8n.postgres) that still listed .env.local in the short form (REQUIRED by default), hard-failing bring-up on nodes without the file. agent_signature: ACK::Mavis::ENV-LOCAL-STRAGGLERS-2026-08
The split regeneration in #2374 updated docker-compose.ui.yml too, but
only docker-compose.yml and docker-compose.core.yml were committed. Same
change: per-node local env file becomes path/required:false so nodes
without it can bring the UI up.
Co-Authored-By: Claude Fable 5 noreply@anthropic.com