-
Notifications
You must be signed in to change notification settings - Fork 495
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
Add a --quiet --no-trunc option to docker buildx ls #380
Comments
Would |
Yes :) |
Feel free to create PRs for |
I'm not a go programmer, but I'll try to take a look |
Fixed in #1787, see https://github.com/docker/buildx/blob/master/docs/reference/buildx_ls.md#-format-the-output---format For |
Hello, I'm making a python lib that wraps the docker CLI commands (similar to docker-py, but I use the cli binary, so it's possible to use buildx for example, unlike docker-py).
When writing the lib, I noticed that it was harder to work with docker buildx than with "docker container" or "docker volume", or "docker network". This is because the output is much different. Especially, what's interesting to me is the "--quiet" option which is available in "docker container ls" or "docker image ls". Without it, I have to do some complicated parsing and it's quite a pain.
As an example:
Which is much harder to parse for a third party lib.
The text was updated successfully, but these errors were encountered: