Merge pull request #35 from crazy-max/node-type

builder: add Node type
This commit is contained in:
CrazyMax
2023-02-18 00:01:23 +01:00
committed by GitHub

View File

@@ -30,3 +30,11 @@ export interface NodeInfo {
buildkitVersion?: string;
platforms?: string;
}
export interface Node {
name?: string;
endpoint?: string;
'driver-opts'?: Array<string>;
'buildkitd-flags'?: string;
platforms?: string;
}