From 57b17f71deee4492cf6b829fdcfac6dbe4be4cc8 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Sun, 5 Aug 2018 07:26:06 +0200
Subject: [PATCH] docs: add docker auth description

---
 website/docs/docker.md | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/website/docs/docker.md b/website/docs/docker.md
index aac1a1e69d..38a19341c5 100644
--- a/website/docs/docker.md
+++ b/website/docs/docker.md
@@ -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>',
+    },
+  ],
+};
+```
-- 
GitLab