Skip to content

Commit

Permalink
Merge pull request #220 from mariotoffia/bug-get-images-filter
Browse files Browse the repository at this point in the history
GetImages bug
  • Loading branch information
mariotoffia authored Oct 1, 2021
2 parents b7a57e2 + 004429a commit f3a18db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ductus.FluentDocker/Commands/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public static CommandResponse<IList<DockerImageRowResponse>> Images(this DockerU
var options = "--quiet --no-trunc --format \"{{.ID}};{{.Repository}};{{.Tag}}\"";
if (!string.IsNullOrEmpty(filter))
{
options = $" --filter=\"{filter}\"";
options += $" --filter=\"{filter}\"";
}

return
Expand Down

0 comments on commit f3a18db

Please sign in to comment.