Packages

package json

Type Members

  1. 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 auth is defined for a registry, that is a valid Basic authorization to use for that registry.

    If credsStore is defined, is a credential helper that stores authorizations for all registries listed under auths.

    Each entry in credHelpers is 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/

Ungrouped