Skip to content

Commit 078dd0d

Browse files
committed
feat: Added docker schema
1 parent b4fb906 commit 078dd0d

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

src/schemastore/codify-schema.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1506,6 +1506,40 @@
15061506
"required": [
15071507
"type"
15081508
]
1509+
},
1510+
{
1511+
"type": "object",
1512+
"description": "Installs docker.",
1513+
"properties": {
1514+
"acceptLicense": {
1515+
"type": "boolean",
1516+
"description": "Accepts the license agreement. Defaults to true"
1517+
},
1518+
"useCurrentUser": {
1519+
"type": "boolean",
1520+
"description": "Use the current user to install docker. Defaults to true"
1521+
},
1522+
"name": {
1523+
"description": "Optional name. Useful for specifying multiple resources of the same type",
1524+
"type": "string",
1525+
"pattern": "^[\\w-]+$"
1526+
},
1527+
"dependsOn": {
1528+
"type": "array",
1529+
"items": {
1530+
"type": "string"
1531+
},
1532+
"uniqueItems": true
1533+
},
1534+
"type": {
1535+
"const": "docker",
1536+
"type": "string"
1537+
}
1538+
},
1539+
"additionalProperties": false,
1540+
"required": [
1541+
"type"
1542+
]
15091543
}
15101544
]
15111545
}

0 commit comments

Comments
 (0)