Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
4 tasks
vvoland opened this issue Jan 10, 2025 · 1 comment
Open
4 tasks

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

vvoland opened this issue Jan 10, 2025 · 1 comment
Assignees
Labels
containerd-integration Issues and PRs related to containerd integration

Comments

@vvoland
Copy link
Collaborator

vvoland commented Jan 10, 2025

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")
}

@vvoland vvoland added the containerd-integration Issues and PRs related to containerd integration label Jan 10, 2025
@vvoland vvoland self-assigned this Jan 10, 2025
@vvoland
Copy link
Collaborator Author

vvoland commented Jan 10, 2025

Related: #5578

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
containerd-integration Issues and PRs related to containerd integration
Projects
None yet
Development

No branches or pull requests

1 participant