From 004429a621e132ddfa5cb10990d643150319ab06 Mon Sep 17 00:00:00 2001 From: Mario Toffia Date: Fri, 1 Oct 2021 14:27:52 +0200 Subject: [PATCH] fixed bug in GetImages where filter did not work properly --- Ductus.FluentDocker/Commands/Client.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ductus.FluentDocker/Commands/Client.cs b/Ductus.FluentDocker/Commands/Client.cs index aeaaadad..ec2a1ffd 100644 --- a/Ductus.FluentDocker/Commands/Client.cs +++ b/Ductus.FluentDocker/Commands/Client.cs @@ -105,7 +105,7 @@ public static CommandResponse> Images(this DockerU var options = "--quiet --no-trunc --format \"{{.ID}};{{.Repository}};{{.Tag}}\""; if (!string.IsNullOrEmpty(filter)) { - options = $" --filter=\"{filter}\""; + options += $" --filter=\"{filter}\""; } return