From 5cca1761f011d70a4a79de310c6274031af10a9f Mon Sep 17 00:00:00 2001 From: Russ Egan Date: Tue, 20 Jan 2026 12:57:06 -0600 Subject: [PATCH] Update Docker min API version to 1.44 As of Docker 29 (Nov 2025), API version 1.44 is the min supported. --- dktest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dktest.go b/dktest.go index 4fbabb1..ba385ef 100644 --- a/dktest.go +++ b/dktest.go @@ -191,7 +191,7 @@ func Run(t *testing.T, imgName string, opts Options, testFunc func(*testing.T, C // RunContext is similar to Run, but takes a parent context and returns an error and doesn't rely on a testing.T. func RunContext(ctx context.Context, logger Logger, imgName string, opts Options, testFunc func(ContainerInfo) error) (retErr error) { - dc, err := client.NewClientWithOpts(client.FromEnv, client.WithVersion("1.41")) + dc, err := client.NewClientWithOpts(client.FromEnv, client.WithVersion("1.44")) if err != nil { return fmt.Errorf("error getting Docker client: %w", err) }