Skip to content

Commit e700f0a

Browse files
authored
Merge pull request docker#9334 from mschoettle/ssh-option-fix-typo
fix typo in ssh option description
2 parents 934b596 + 6dbd6ff commit e700f0a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/compose/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func buildCommand(p *projectOptions, backend api.Service) *cobra.Command {
108108
cmd.Flags().BoolVar(&opts.pull, "pull", false, "Always attempt to pull a newer version of the image.")
109109
cmd.Flags().StringVar(&opts.progress, "progress", buildx.PrinterModeAuto, fmt.Sprintf(`Set type of progress output (%s)`, strings.Join(printerModes, ", ")))
110110
cmd.Flags().StringArrayVar(&opts.args, "build-arg", []string{}, "Set build-time variables for services.")
111-
cmd.Flags().StringVar(&opts.ssh, "ssh", "", "Set SSH authentications used when building service images. (use 'default' for using you default SSH Agent)")
111+
cmd.Flags().StringVar(&opts.ssh, "ssh", "", "Set SSH authentications used when building service images. (use 'default' for using your default SSH Agent)")
112112
cmd.Flags().Bool("parallel", true, "Build images in parallel. DEPRECATED")
113113
cmd.Flags().MarkHidden("parallel") //nolint:errcheck
114114
cmd.Flags().Bool("compress", true, "Compress the build context using gzip. DEPRECATED")

docs/reference/compose_build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Build or rebuild services
1212
| `--progress` | `string` | `auto` | Set type of progress output (auto, tty, plain, quiet) |
1313
| `--pull` | | | Always attempt to pull a newer version of the image. |
1414
| `-q`, `--quiet` | | | Don't print anything to STDOUT |
15-
| `--ssh` | `string` | | Set SSH authentications used when building service images. (use 'default' for using you default SSH Agent) |
15+
| `--ssh` | `string` | | Set SSH authentications used when building service images. (use 'default' for using your default SSH Agent) |
1616

1717

1818
<!---MARKER_GEN_END-->

docs/reference/docker_compose_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ options:
120120
- option: ssh
121121
value_type: string
122122
description: |
123-
Set SSH authentications used when building service images. (use 'default' for using you default SSH Agent)
123+
Set SSH authentications used when building service images. (use 'default' for using your default SSH Agent)
124124
deprecated: false
125125
hidden: false
126126
experimental: false

0 commit comments

Comments
 (0)