2022-05-09 01:47:54 +02:00
|
|
|
{
|
|
|
|
|
"type": "object",
|
|
|
|
|
"description": "AIO containers definition schema",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"minProperties": 1,
|
|
|
|
|
"properties": {
|
2022-12-25 00:58:09 +01:00
|
|
|
"services": {
|
2022-05-09 01:47:54 +02:00
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"minProperties": 11,
|
|
|
|
|
"properties": {
|
2022-12-25 00:43:26 +01:00
|
|
|
"image": {
|
2022-05-09 01:47:54 +02:00
|
|
|
"type": "string"
|
|
|
|
|
},
|
2022-12-25 00:39:22 +01:00
|
|
|
"depends_on": {
|
2022-05-09 01:47:54 +02:00
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-12-25 00:55:54 +01:00
|
|
|
"display_name": {
|
2022-05-09 01:47:54 +02:00
|
|
|
"type": "string"
|
|
|
|
|
},
|
2022-12-25 00:48:24 +01:00
|
|
|
"environment": {
|
2022-05-09 01:47:54 +02:00
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-12-25 00:36:19 +01:00
|
|
|
"container_name": {
|
2022-05-09 01:47:54 +02:00
|
|
|
"type": "string"
|
|
|
|
|
},
|
2022-12-25 01:40:37 +01:00
|
|
|
"internal_port": {
|
|
|
|
|
"type": "string"
|
2022-05-09 01:47:54 +02:00
|
|
|
},
|
2022-12-25 00:50:17 +01:00
|
|
|
"stop_grace_period": {
|
2022-05-09 01:47:54 +02:00
|
|
|
"type": "integer"
|
|
|
|
|
},
|
|
|
|
|
"ports": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-12-25 00:52:01 +01:00
|
|
|
"restart": {
|
2022-05-09 01:47:54 +02:00
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"secrets": {
|
|
|
|
|
"type": "array"
|
|
|
|
|
},
|
|
|
|
|
"volumes": {
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"minProperties": 3,
|
|
|
|
|
"properties": {
|
|
|
|
|
"location": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"name": {
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"writeable": {
|
|
|
|
|
"type": "boolean"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|