package json
Type Members
-
class
DockerConfigTemplate extends JsonTemplate
Template for a Docker config file.
Template for a Docker config file.
Example:
{ "auths": { "registry": { "auth": "username:password in base64", "anotherregistry": {}, ... }, "credsStore": "credential helper name", "credHelpers": { "registry": "credential helper name", "anotherregistry": "another credential helper name", ... } } }If an
authis defined for a registry, that is a validBasicauthorization to use for that registry.If
credsStoreis defined, is a credential helper that stores authorizations for all registries listed underauths.Each entry in
credHelpersis a mapping from a registry to a credential helper that stores the authorization for that registry.- See also
<a href="https://www.projectatomic.io/blog/2016/03/docker-credentials-store/">https://www.projectatomic.io/blog/2016/03/docker-credentials-store/