Closed jtmonroe closed 2 months ago
I sorted out where the format string is coming from. The vscode-docker-extensibility
package formats the format string without the quotations.
We've done some changes in that area lately, can you check out the latest version of the Docker extension (1.29.2) and see if it fixes it?
This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.
Happy Coding!
I am getting a similar error to some other users, but it looks different enough that I figured it deserves its own thread. I am running
podman-docker
and other than this everything seems to work except for this.Looking at the logs, the command getting run is
docker image ls --filter dangling=false --no-trunc --format {{json .}}
The command does not work, but this one does.
docker image ls --filter dangling=false --no-trunc --format "{{json .}}"
I am not sure how or where to fix this.