Skip to content

Commit

Permalink
fixed bug in GetImages where filter did not work properly
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotoffia committed Oct 1, 2021
1 parent b054969 commit 004429a
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 004429a

Please sign in to comment.