Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 338 Bytes

docker-auth.md

File metadata and controls

21 lines (16 loc) · 338 Bytes

Docker Auth config

Format of Docker config.json credential file

{
    "auths": {
        "https://index.docker.io/v1/": {
            "auth": "auth_key",
            "email": "email@domain"
        }
    }
}

Use the following command to produce the base64 of your credentials

echo -n 'username:password' | base64