Forklift buildx provider

This commit is contained in:
Bryce Lampe
2024-03-25 11:40:33 -07:00
parent 2b348f84e4
commit d50d156bd8
349 changed files with 61549 additions and 1141 deletions

5
sdk/nodejs/config/index.ts generated Normal file
View File

@@ -0,0 +1,5 @@
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
// Export members:
export * from "./vars";

31
sdk/nodejs/config/vars.ts generated Normal file
View File

@@ -0,0 +1,31 @@
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
import * as utilities from "../utilities";
declare var exports: any;
const __config = new pulumi.Config("dockerbuild");
/**
* The build daemon's address.
*/
export declare const host: string;
Object.defineProperty(exports, "host", {
get() {
return __config.get("host") ?? (utilities.getEnv("DOCKER_HOST") || "");
},
enumerable: true,
});
export declare const registries: outputs.Registry[] | undefined;
Object.defineProperty(exports, "registries", {
get() {
return __config.getObject<outputs.Registry[]>("registries");
},
enumerable: true,
});