@forge/manifest
12.0.012.1.0-next.0
out/schema/manifest.d.tsout/schema/manifest.d.ts+5−5
Index: package/out/schema/manifest.d.ts
===================================================================
--- package/out/schema/manifest.d.ts
+++ package/out/schema/manifest.d.ts
@@ -801,9 +801,9 @@
export type Containers = {
key: string;
tag: string;
health: Health;
- resources?: Resources1;
+ resources: Resources1;
tunnel?: ContainerTunnelConfig;
}[];
export type Services = {
key: string;
@@ -74029,15 +74029,15 @@
};
}
export interface Resources1 {
/**
- * The amount of CPU to be allocated to the container
+ * The reserved amount of CPU for the container
*/
- cpu?: number;
+ cpu: string;
/**
- * The amount of memory to be allocated to the container
+ * The reserved amount of memory for the container
*/
- memory?: number;
+ memory: string;
}
export interface ContainerTunnelConfig {
docker: {
build?: {