Files
backroad/app/portainer/services/dockerMaxApiVersion.ts
2026-01-08 14:22:48 +13:00

8 lines
285 B
TypeScript

// Key used in axios types definitions
export const MaxDockerAPIVersionKey = 'maxDockerAPIVersion' as const;
export type DockerAPIVersionType = number;
// this is the version we are using with the generated API types
export const MAX_DOCKER_API_VERSION: DockerAPIVersionType = 1.47;