diff --git a/website/docs/introduction/quick-start.mdx b/website/docs/introduction/quick-start.mdx index dad5dc3..6a90c5a 100644 --- a/website/docs/introduction/quick-start.mdx +++ b/website/docs/introduction/quick-start.mdx @@ -323,11 +323,7 @@ busly command send ` --content-type 'text/json' ` --enclosed-message-type "Messages.Commands.CreateOrder" ` --destination-endpoint "BuslyCLI.DemoEndpoint" ` - --message-body @payload.json -``` - - - + --message-body "@payload.json" When running via Docker, mount the payload file into the container using `-v` and reference its container path with `@`: @@ -360,7 +356,7 @@ docker run --rm ` --content-type "text/json" ` --enclosed-message-type "Messages.Commands.CreateOrder" ` --destination-endpoint "BuslyCLI.DemoEndpoint" ` - --message-body @/app/payload.json ` + --message-body "@/app/payload.json" ` --config ./config.yaml ```