From 456254e94c6448b9e211261330f9654d2c811c80 Mon Sep 17 00:00:00 2001 From: Misha Merkushin Date: Tue, 26 Nov 2024 16:50:37 +0300 Subject: [PATCH] fix: move compose_run_options to the proper place --- schema.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/schema.json b/schema.json index 6db99f0..87145e0 100644 --- a/schema.json +++ b/schema.json @@ -68,14 +68,6 @@ "description": "Options to pass to the 'docker-compose run' command", "examples": [["service-ports", "rm"]] }, - "compose_run_options": { - "type": "array", - "items": { - "type": "string" - }, - "description": "DEPRECATED: Options to pass to the 'docker-compose run' command", - "examples": [["service-ports", "rm"]] - }, "profiles": { "type": "array", "items": { @@ -102,6 +94,14 @@ "type": "string", "description": "Specifies the pod for the kubectl runner" }, + "compose_run_options": { + "type": "array", + "items": { + "type": "string" + }, + "description": "DEPRECATED: Options to pass to the 'docker-compose run' command", + "examples": [["service-ports", "rm"]] + }, "subcommands": { "type": "object", "description": "Contains subcommands with the same structure as main commands",