fix: parse yaml error

This commit is contained in:
jialin
2026-01-30 20:48:55 +08:00
committed by Lawrence Li
parent 4a4a02eb0d
commit 2dab5093dc
10 changed files with 83 additions and 19 deletions
@@ -30,6 +30,13 @@
"type": ["string", "null"],
"description": "default start command"
},
"default_environment": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "default environment variables"
},
"health_check_path": {
"type": ["string", "null"],
"description": "health check path"
@@ -55,6 +62,13 @@
"custom_framework": {
"type": ["string", "null"],
"description": "custom framework"
},
"environment": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "environment variables"
}
},
"required": ["image_name", "run_command"],