-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
fix(docker): migrate database start actions from --time to -t flag #7388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Migrates 8 database start action files from deprecated --time=10 to compatible -t 10 flag for Docker v28+ compatibility. Also updates test expectations in StopProxyTest.php. Docker deprecated the --time flag in v28.0. The -t shorthand works on all Docker versions (pre-28 and 28+), ensuring backward and forward compatibility. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
WalkthroughThis pull request updates Docker stop command syntax across multiple database action files and corresponding tests. The changes replace the long-form ✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: ASSERTIVE Plan: Pro 📒 Files selected for processing (9)
🧰 Additional context used📓 Path-based instructions (4)**/*.php📄 CodeRabbit inference engine (CLAUDE.md)
Files:
app/Actions/**/*.php📄 CodeRabbit inference engine (CLAUDE.md)
Files:
tests/Unit/**/*.php📄 CodeRabbit inference engine (CLAUDE.md)
Files:
tests/**/*.php📄 CodeRabbit inference engine (CLAUDE.md)
Files:
🧠 Learnings (1)📚 Learning: 2025-11-25T09:32:36.504ZApplied to files:
🔇 Additional comments (11)
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 |
Changes
--time=10to compatible-t 10flagStopProxyTest.phpto expect new-tsyntaxContext
Docker deprecated the
--timeflag in v28.0. The-tshorthand works on all Docker versions (pre-28 and 28+), ensuring backward and forward compatibility. This PR addresses the database start actions that were missed in previous migration efforts.Files Changed
🤖 Generated with Claude Code