ImageRegistryCredential

Image registry credential.

AzureCloudContainer InstancesContainersMicrosoftServerless

Properties

Name Type Description
password string The password for the private registry.
server string The Docker image registry server without a protocol such as "http" and "https".
username string The username for the private registry.
View JSON Schema on GitHub

JSON Schema

azure-container-instances-image-registry-credential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-instances/refs/heads/main/json-schema/azure-container-instances-image-registry-credential-schema.json",
  "title": "ImageRegistryCredential",
  "description": "Image registry credential.",
  "type": "object",
  "properties": {
    "password": {
      "description": "The password for the private registry.",
      "type": "string"
    },
    "server": {
      "description": "The Docker image registry server without a protocol such as \"http\" and \"https\".",
      "type": "string"
    },
    "username": {
      "description": "The username for the private registry.",
      "type": "string"
    }
  },
  "required": [
    "server",
    "username"
  ]
}