Merge pull request #136 from docker/chore-ls-list

Add list alias for all ls commands
This commit is contained in:
Silvin Lubecki 2020-11-20 17:39:02 +01:00 коммит произвёл GitHub
Родитель 97aa80f592 7ba9037579
Коммит 8ad1a0dc0d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -67,6 +67,7 @@ func newListCmd(streams command.Streams, hubClient *hub.Client, parent string) *
var opts listOptions
cmd := &cobra.Command{
Use: listName,
Aliases: []string{"list"},
Short: "List all the organizations",
Args: cli.NoArgs,
DisableFlagsInUseLine: true,

Просмотреть файл

@ -79,6 +79,7 @@ func newListCmd(streams command.Streams, hubClient *hub.Client, parent string) *
var opts listOptions
cmd := &cobra.Command{
Use: listName + " [ORGANIZATION]",
Aliases: []string{"list"},
Short: "List all the repositories from your account or an organization",
Args: cli.RequiresMaxArgs(1),
DisableFlagsInUseLine: true,

Просмотреть файл

@ -116,6 +116,7 @@ func newListCmd(streams command.Streams, hubClient *hub.Client, parent string) *
var opts listOptions
cmd := &cobra.Command{
Use: lsName + " [OPTION] REPOSITORY",
Aliases: []string{"list"},
Short: "List all the images in a repository",
Args: cli.ExactArgs(1),
DisableFlagsInUseLine: true,

Просмотреть файл

@ -73,6 +73,7 @@ func newListCmd(streams command.Streams, hubClient *hub.Client, parent string) *
var opts listOptions
cmd := &cobra.Command{
Use: lsName + " [OPTION]",
Aliases: []string{"list"},
Short: "List all the Personal Access Tokens",
Args: cli.NoArgs,
DisableFlagsInUseLine: true,