yoki icon indicating copy to clipboard operation
yoki copied to clipboard

Docker registry authentication

Open devnatan opened this issue 4 years ago • 0 comments

We currently do not support authentication against the Docker registry, so private registries will not work. I was thinking of a simple implementation but nothing too concrete like this:

Yoki(Docker) {
    registry { // this: DockerRegistryAuthentication
        url = ""
        username = "johndoe"
        password = "yoki"
        email = "[email protected]"
    }
}

It should also be possible to get the authentication directly from the environment variables.

devnatan avatar Jan 14 '22 23:01 devnatan