fix: update docker commands in package.json to use 'docker compose' syntax#965
fix: update docker commands in package.json to use 'docker compose' syntax#965MrgSub merged 4 commits intoMail-0:stagingfrom
Conversation
|
@SerhiiMandrykin is attempting to deploy a commit to the Zero Team on Vercel. A member of the Team first needs to authorize it. |
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
Please resolve conflicts |
|
Any updates on this PR to be approved? |
Description
This PR updates the Docker commands within the
scriptssection ofpackage.json. Specifically, it replaces the legacydocker-composecommand (with hyphen) with the moderndocker composesyntax (with space) for thedocker:up,docker:down, anddocker:cleanscripts.This change aligns the project with current Docker best practices and ensures compatibility with newer Docker versions that prioritize the integrated
composecommand.Type of Change
(Fixes usage of deprecated command syntax)
Areas Affected
Testing Done
(Verified that
bun run docker:up,bun run docker:down, andbun run docker:cleanexecute correctly using the newdocker composesyntax.)Security Considerations
(This change modifies script commands and does not directly handle data or authentication.)
Checklist
Additional Notes
This update ensures the project uses the standard Docker Compose V2 command syntax, improving maintainability and alignment with Docker tooling updates.
Screenshots/Recordings
(N/A for this change)
By submitting this pull request, I confirm that my contribution is made under the terms of the project's license.
Summary by CodeRabbit
docker composesyntax instead of the deprecateddocker-composecommand.