Skip to content

Commit a705e27

Browse files
committed
Fix ls --quiet help description
Signed-off-by: Max Proske <[email protected]>
1 parent 6ecb8d4 commit a705e27

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/compose/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func listCommand(dockerCli command.Cli, backend api.Service) *cobra.Command {
5050
ValidArgsFunction: noCompletion(),
5151
}
5252
lsCmd.Flags().StringVar(&lsOpts.Format, "format", "table", "Format the output. Values: [table | json]")
53-
lsCmd.Flags().BoolVarP(&lsOpts.Quiet, "quiet", "q", false, "Only display IDs")
53+
lsCmd.Flags().BoolVarP(&lsOpts.Quiet, "quiet", "q", false, "Only display project names")
5454
lsCmd.Flags().Var(&lsOpts.Filter, "filter", "Filter output based on conditions provided")
5555
lsCmd.Flags().BoolVarP(&lsOpts.All, "all", "a", false, "Show all stopped Compose projects")
5656

docs/reference/compose_ls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Lists running Compose projects
1111
| `--dry-run` | `bool` | | Execute command in dry run mode |
1212
| `--filter` | `filter` | | Filter output based on conditions provided |
1313
| `--format` | `string` | `table` | Format the output. Values: [table \| json] |
14-
| `-q`, `--quiet` | `bool` | | Only display IDs |
14+
| `-q`, `--quiet` | `bool` | | Only display project names |
1515

1616

1717
<!---MARKER_GEN_END-->

docs/reference/docker_compose_ls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ options:
3939
shorthand: q
4040
value_type: bool
4141
default_value: "false"
42-
description: Only display IDs
42+
description: Only display project names
4343
deprecated: false
4444
hidden: false
4545
experimental: false

0 commit comments

Comments
 (0)