Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions website/docs/introduction/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

</TabItem>
<TabItem value="docker bash" label="Docker (Bash)">
--message-body "@payload.json"

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

Expand Down Expand Up @@ -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
```

Expand Down
Loading