summaryrefslogtreecommitdiff
path: root/pkg/api/types/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/api/types/types.go')
-rw-r--r--pkg/api/types/types.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/api/types/types.go b/pkg/api/types/types.go
new file mode 100644
index 000000000..1b91364e3
--- /dev/null
+++ b/pkg/api/types/types.go
@@ -0,0 +1,9 @@
+package types
+
+const (
+ // DefaultAPIVersion is the version of the API the server defaults to.
+ DefaultAPIVersion = "1.40" // See https://docs.docker.com/engine/api/v1.40/
+
+ // DefaultAPIVersion is the minimal required version of the API.
+ MinimalAPIVersion = "1.24"
+)