diff --git a/cmd/compose/list.go b/cmd/compose/list.go index c020f3d4f6..38fb2ce8c5 100644 --- a/cmd/compose/list.go +++ b/cmd/compose/list.go @@ -50,7 +50,7 @@ func listCommand(dockerCli command.Cli, backend api.Service) *cobra.Command { ValidArgsFunction: noCompletion(), } lsCmd.Flags().StringVar(&lsOpts.Format, "format", "table", "Format the output. Values: [table | json]") - lsCmd.Flags().BoolVarP(&lsOpts.Quiet, "quiet", "q", false, "Only display IDs") + lsCmd.Flags().BoolVarP(&lsOpts.Quiet, "quiet", "q", false, "Only display project names") lsCmd.Flags().Var(&lsOpts.Filter, "filter", "Filter output based on conditions provided") lsCmd.Flags().BoolVarP(&lsOpts.All, "all", "a", false, "Show all stopped Compose projects") diff --git a/docs/reference/compose_ls.md b/docs/reference/compose_ls.md index 754e917971..7719d20860 100644 --- a/docs/reference/compose_ls.md +++ b/docs/reference/compose_ls.md @@ -11,7 +11,7 @@ Lists running Compose projects | `--dry-run` | `bool` | | Execute command in dry run mode | | `--filter` | `filter` | | Filter output based on conditions provided | | `--format` | `string` | `table` | Format the output. Values: [table \| json] | -| `-q`, `--quiet` | `bool` | | Only display IDs | +| `-q`, `--quiet` | `bool` | | Only display project names | diff --git a/docs/reference/docker_compose_ls.yaml b/docs/reference/docker_compose_ls.yaml index a2efac2a88..dd6418c652 100644 --- a/docs/reference/docker_compose_ls.yaml +++ b/docs/reference/docker_compose_ls.yaml @@ -39,7 +39,7 @@ options: shorthand: q value_type: bool default_value: "false" - description: Only display IDs + description: Only display project names deprecated: false hidden: false experimental: false