@forge/cli-shared
8.15.1-next.88.15.1-next.9
out/tunnel/docker-compose-lifecycle.d.ts~
out/tunnel/docker-compose-lifecycle.d.tsModified+5
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
@@ -1,7 +1,8 @@
import { UserError } from '../shared';
import { ConfigFile } from '../config/config-file';
import { Services } from '@forge/manifest';
+import { ChildProcess } from 'child_process';
export declare const PROXY_SIDECAR_VOLUME_DIR = "/forge/container";
export declare const CONTAINER_SERVICE_ASSETS = ".container-service-assets";
export declare const K8S_AUTH_TOKEN_FILENAME = "local-account";
export declare class InvalidContainerServicePort extends UserError {
@@ -18,9 +19,13 @@
}
export declare class CannotUseBothImageAndBuildContextError extends UserError {
constructor(containerKey: string);
}
+export declare class DockerAuthenticationError extends UserError {
+ constructor(errCode: 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>;
+export declare const processDockerAuthentication: (childProcess: ChildProcess) => Promise<void>;
//# sourceMappingURL=docker-compose-lifecycle.d.ts.map
\ No newline at end of file