Matthew Rich
bcf4e768ff
WIP: add support container image build using local filesytem contexts or contextes generated from resource definitions WIP: added support for the create command in the exec resource Fix a type matching error in `types` package use of generics
21 lines
538 B
JSON
21 lines
538 B
JSON
{
|
|
"$id": "container-image.schema.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "container-image",
|
|
"description": "A docker container image",
|
|
"type": "object",
|
|
"required": [ "name" ],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"pattern": "^(?:[-0-9A-Za-z_.]+((?::[0-9]+|)(?:/[-a-z0-9._]+/[-a-z0-9._]+))|)(?:/|)(?:[-a-z0-9._]+(?:/[-a-z0-9._]+|))(:(?:[-0-9A-Za-z_.]{1,127})|)$"
|
|
},
|
|
"Contextref": {
|
|
"type": "string"
|
|
},
|
|
"Injectjx": {
|
|
"type": "boolean"
|
|
}
|
|
}
|
|
}
|