Skip to content
Merged
Changes from 1 commit
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
4 changes: 3 additions & 1 deletion internal/pkg/cli/task_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,9 @@ func BuildTaskRunCmd() *cobra.Command {
Run a task using the current workspace with specific subnets and security groups.
/code $ copilot task run --subnets subnet-123,subnet-456 --security-groups sg-123,sg-456
Run a task with a command.
/code $ copilot task run --command "python migrate-script.py"`,
/code $ copilot task run --command "python migrate-script.py"
Run a task with Docker build-args.
/code $ copilot task run --build-args GO_VERSION=1.19"`,
RunE: runCmdE(func(cmd *cobra.Command, args []string) error {
opts, err := newTaskRunOpts(vars)
if err != nil {
Expand Down