Skip to content

Commit eb78d14

Browse files
committed
Fix quote issue
1 parent c40ca78 commit eb78d14

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

website/docs/introduction/quick-start.mdx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -323,11 +323,7 @@ busly command send `
323323
--content-type 'text/json' `
324324
--enclosed-message-type "Messages.Commands.CreateOrder" `
325325
--destination-endpoint "BuslyCLI.DemoEndpoint" `
326-
--message-body @payload.json
327-
```
328-
329-
</TabItem>
330-
<TabItem value="docker bash" label="Docker (Bash)">
326+
--message-body "@payload.json"
331327

332328
When running via Docker, mount the payload file into the container using `-v` and reference its container path with `@`:
333329

@@ -360,7 +356,7 @@ docker run --rm `
360356
--content-type "text/json" `
361357
--enclosed-message-type "Messages.Commands.CreateOrder" `
362358
--destination-endpoint "BuslyCLI.DemoEndpoint" `
363-
--message-body @/app/payload.json `
359+
--message-body "@/app/payload.json" `
364360
--config ./config.yaml
365361
```
366362

0 commit comments

Comments
 (0)