@forge/manifest
11.3.011.3.1-next.0
out/schema/manifest.d.tsout/schema/manifest.d.ts+3−3
Index: package/out/schema/manifest.d.ts
===================================================================
--- package/out/schema/manifest.d.ts
+++ package/out/schema/manifest.d.ts
@@ -74001,9 +74001,9 @@
memory?: number;
}
export interface ContainerTunnelConfig {
docker: {
- build: {
+ build?: {
/**
* Path to the build context directory. This is where docker will look for the Dockerfile and any other files referenced in the Dockerfile
*/
context: string;
@@ -74014,13 +74014,13 @@
};
/**
* The name of the image to build
*/
- image: string;
+ image?: string;
/**
* The port mappings for the container. Traffic directed to the host (left) port will be forwarded to the container (right) port
*/
- ports: string[];
+ ports?: string[];
/**
* The custom environment variables available to the running processes in the container
*/
environment?: string[];