@forge/cli-shared
8.12.08.12.1-next.0
out/tunnel/docker-compose-lifecycle.d.tsout/tunnel/docker-compose-lifecycle.d.ts+6
Index: package/out/tunnel/docker-compose-lifecycle.d.ts
===================================================================
--- package/out/tunnel/docker-compose-lifecycle.d.ts
+++ package/out/tunnel/docker-compose-lifecycle.d.ts
@@ -12,8 +12,14 @@
}
export declare class DockerUnableToStartError extends UserError {
constructor(err?: Error);
}
+export declare class MissingImageOrBuildContextError extends UserError {
+ constructor(containerKey: string);
+}
+export declare class CannotUseBothImageAndBuildContextError extends UserError {
+ constructor(containerKey: string);
+}
export declare const generateContainersDockerComposeFile: (services: Services, appId: string, envId: string) => Promise<Record<string, string>>;
export declare const deleteDockerComposeFile: (composeFile: string) => Promise<void>;
export declare const startDockerComposeStack: (dockerComposeFilePath: string, serviceKey: string) => Promise<void>;
export declare const stopDockerComposeStack: (configFile: ConfigFile, composeFiles?: Record<string, string>) => Promise<void>;