Skip to main content

Docker registry

Defines the settings for docker server as an asset repository.

Properties

NameTypeDescriptionRequired
setupobjectRegistry connection details
yes
repository_provider
(Provider)
stringDefault: "docker_server"
Constant Value: "docker_server"
no

Additional Properties: not allowed
Example

{
"setup": {
"path": "myorg/team-a",
"server": "https://registry.hub.docker.com"
},
"repository_provider": "docker_server"
}

setup: Setup

Registry connection details

Properties

NameTypeDescriptionRequired
path
(Registry Path)
stringBase path for images
Minimal Length: 1
no
server
(Server URL)
stringDocker registry URL
Minimal Length: 1
yes
passwordstringRegistry password or token
Minimal Length: 1
yes
usernamestringRegistry username
Minimal Length: 1
yes
use_namespacebooleanUse namespace for folder structure
no

Additional Properties: not allowed
Example

{
"path": "myorg/team-a",
"server": "https://registry.hub.docker.com"
}