buildx: localstate refs

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2024-04-25 09:51:14 +02:00
parent 33688c4ac8
commit e41efdd2aa
15 changed files with 117 additions and 1 deletions

View File

@@ -26,3 +26,21 @@ export interface DownloadVersion {
downloadURL: string;
releasesURL: string;
}
export interface LocalRefsOpts {
dir: string;
builderName?: string;
nodeName?: string;
since?: Date;
}
export interface LocalRefsResponse {
[ref: string]: LocalState;
}
export interface LocalState {
Target: string;
LocalPath: string;
DockerfilePath: string;
GroupRef?: string;
}