diff --git a/src/buildx.ts b/src/buildx.ts index ab29ebb7..45ca8ca2 100644 --- a/src/buildx.ts +++ b/src/buildx.ts @@ -18,8 +18,10 @@ export type Builder = { export type Node = { name?: string; endpoint?: string; + 'driver-opts'?: Array; status?: string; 'buildkitd-flags'?: string; + buildkit?: string; platforms?: string; }; @@ -133,6 +135,10 @@ export async function inspect(name: string, standalone?: boolean): Promise v.replace(/^(.*)="(.*)"$/g, '$1=$2')); + break; + } case 'status': { node.status = value; break; @@ -141,6 +147,10 @@ export async function inspect(name: string, standalone?: boolean): Promise