From e8d3cd96ebb958a64023daaf54398a5912433dfa Mon Sep 17 00:00:00 2001 From: Enno Tensing Date: Wed, 30 Jul 2025 11:10:48 +0200 Subject: [PATCH] containerrc: Expand schema to allow memory accounting Signed-off-by: Enno Tensing --- containerrc.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/containerrc.json b/containerrc.json index 9de93a0..ff8e038 100644 --- a/containerrc.json +++ b/containerrc.json @@ -182,6 +182,20 @@ } } } + }, + "memory": { + "type": "object", + "properties": { + "limit": { + "type": "string" + }, + "reservation": { + "type": "string" + }, + "swap": { + "type": "string" + } + } } } },