Render · Schema

dockerDetails

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
dockerCommand string
dockerContext string
dockerfilePath string
preDeployCommand string
registryCredential object
View JSON Schema on GitHub

JSON Schema

render-dockerdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dockerDetails",
  "title": "dockerDetails",
  "type": "object",
  "required": [
    "dockerCommand",
    "dockerContext",
    "dockerfilePath"
  ],
  "properties": {
    "dockerCommand": {
      "type": "string"
    },
    "dockerContext": {
      "type": "string"
    },
    "dockerfilePath": {
      "type": "string"
    },
    "preDeployCommand": {
      "type": "string"
    },
    "registryCredential": {
      "$ref": "#/components/schemas/registryCredential"
    }
  }
}