Docker registry
Defines the settings for docker server as an asset repository.
Type: docker-server
Properties
Name | Type | Description | Required |
---|---|---|---|
setup | object | Registry connection details | yes |
Additional Properties: not allowed
Example
{
"setup": {
"path": "myorg/team-a",
"server": "https://registry.hub.docker.com"
}
}
setup: Setup
Registry connection details
Properties
Name | Type | Description | Required |
---|---|---|---|
path (Registry Path) | string | Base path for images Minimal Length: 1 | no |
server (Server URL) | string | Docker registry URL Minimal Length: 1 | yes |
password | string | Registry password or token Minimal Length: 1 | yes |
username | string | Registry username Minimal Length: 1 | yes |
use_namespace | boolean | Use namespace for folder structure | no |
Additional Properties: not allowed
Example
{
"path": "myorg/team-a",
"server": "https://registry.hub.docker.com"
}