Fix malformed Docker Compose command in CONTRIBUTING.md - #1740
Conversation
Fix the missing space in the Docker Compose command in `CONTRIBUTING.md`. Changed `docker compose upjsonrpc ...` to `docker compose up jsonrpc ...` so the command is parsed correctly by Docker Compose.
|
This PR targeted I retargeted it to |
|
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 ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
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 |
What
Fix the malformed Docker Compose command in
CONTRIBUTING.mdby adding the missing space betweenupandjsonrpc.##Why
The command should use up jsonrpc, as the jsonrpc service is defined in docker-compose.yml.
A separate issue was not created since this is a small documentation fix.
Testing done
Verified the
jsonrpcservice is defined indocker-compose.ymland confirmed the corrected command follows the expected Docker Compose syntax.