From 57e1d95643781ce571c54636d77589031f4e75f6 Mon Sep 17 00:00:00 2001 From: Simon L Date: Mon, 26 Dec 2022 02:24:38 +0100 Subject: [PATCH] improve containeers schema Signed-off-by: Simon L --- php/containers-schema.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/php/containers-schema.json b/php/containers-schema.json index be7404b5..887af502 100644 --- a/php/containers-schema.json +++ b/php/containers-schema.json @@ -1,15 +1,16 @@ { "type": "object", "description": "AIO containers definition schema", - "additionalProperties": false, "minProperties": 1, + "required": ["services"], "properties": { "services": { "type": "array", "items": { "type": "object", "additionalProperties": false, - "minProperties": 11, + "minProperties": 2, + "required": ["image", "container_name"], "properties": { "image": { "type": "string"