From ca31580cb014974f46fb88e6abc0de156c1e7fd6 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer <bagage@users.noreply.github.com> Date: Wed, 30 Jan 2019 21:17:10 +0100 Subject: [PATCH] docs: specify supported binarySource modes (#3138) --- lib/config/definitions.js | 3 ++- website/docs/self-hosted-configuration.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/config/definitions.js b/lib/config/definitions.js index 90eefb9416..b133ce8217 100644 --- a/lib/config/definitions.js +++ b/lib/config/definitions.js @@ -68,7 +68,8 @@ const options = [ }, { name: 'binarySource', - description: 'Where to source binaries like `npm` and `yarn` from', + description: + 'Where to source binaries like `npm` and `yarn` from, choices are `bundled`, `global` and `docker`', admin: true, type: 'string', default: 'bundled', diff --git a/website/docs/self-hosted-configuration.md b/website/docs/self-hosted-configuration.md index b8b7ee0e4b..d20359d08d 100644 --- a/website/docs/self-hosted-configuration.md +++ b/website/docs/self-hosted-configuration.md @@ -14,6 +14,7 @@ Be cautious when using this option - it will run Renovate over _every_ repositor ## binarySource Set this to 'global' if you wish Renovate to use globally-installed binaries (`npm`, `yarn`, etc) instead of using its bundled versions. +Set this to 'docker' instead to use docker-based binaries. ## dryRun -- GitLab