Skip to content

docker images --tree support other image list switches #5733

@vvoland

Description

@vvoland

The new tree output (--tree) flag in docker image list makes it impossible to use these flags:

  • --quiet
  • --no-trunc
  • --show-digest
  • --format

if options.tree {
if options.quiet {
return errors.New("--quiet is not yet supported with --tree")
}
if options.noTrunc {
return errors.New("--no-trunc is not yet supported with --tree")
}
if options.showDigests {
return errors.New("--show-digest is not yet supported with --tree")
}
if options.format != "" {
return errors.New("--format is not yet supported with --tree")
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

containerd-integrationIssues and PRs related to containerd integration

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions