From c53362749d17bad8060947cc1a96528835271df1 Mon Sep 17 00:00:00 2001 From: Xav-Pe Date: Fri, 14 Nov 2025 14:12:28 +0100 Subject: [PATCH] fix docker client api version --- internal/flags/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/flags/flags.go b/internal/flags/flags.go index c11cdae..cc7d9e7 100644 --- a/internal/flags/flags.go +++ b/internal/flags/flags.go @@ -17,7 +17,7 @@ import ( // DockerAPIMinVersion is the minimum version of the docker api required to // use watchtower -const DockerAPIMinVersion string = "1.25" +const DockerAPIMinVersion string = "1.44" var defaultInterval = int((time.Hour * 24).Seconds())