Skip to content
Snippets Groups Projects
Commit 57b17f71 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

docs: add docker auth description

parent 3a623944
No related branches found
No related tags found
No related merge requests found
......@@ -79,3 +79,19 @@ Add `"default:pinDigestsDisabled"` to your `extends` array.
##### Automerge digest updates
Add `"default:automergeDigest"` to your `extends` array. Also add `"default:automergeBranchPush"` if you wish for these to be committed directly to your base branch without raising a PR first.
##### Registry authentication
If you are running your own Renovate bot, add this to your `config.js`:
```js
module.exports = {
endpoints: [
{
platform: 'docker',
username: '<your-username>',
password: '<your-password>',
},
],
};
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment