From 052e15e0aecd889777e2b4ab7fa2667f8be40cae Mon Sep 17 00:00:00 2001
From: Sergei Zharinov <zharinov@users.noreply.github.com>
Date: Wed, 23 Jun 2021 09:16:31 +0400
Subject: [PATCH] docs: Clarify dockerChildPrefix option (#10539)

---
 docs/usage/self-hosted-configuration.md | 2 +-
 lib/config/definitions.ts               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/usage/self-hosted-configuration.md b/docs/usage/self-hosted-configuration.md
index e842e566a4..c2e3b51875 100644
--- a/docs/usage/self-hosted-configuration.md
+++ b/docs/usage/self-hosted-configuration.md
@@ -138,7 +138,7 @@ This configuration will be applied after all other environment variables so that
 
 Adds a custom prefix to the default Renovate sidecar Docker containers name and label.
 
-If this is set to `myprefix_` the final image name for `renovate/node` would be named `myprefix_node` instead of currently used `renovate_node` and be labeled `myprefix_child` instead of `renovate_child`.
+If this is set to `myprefix_` the final container created from `renovate/node` image would be named `myprefix_node` instead of currently used `renovate_node` and be labeled `myprefix_child` instead of `renovate_child`.
 
 Note that dangling containers will not be removed until Renovate is run with the same prefix again.
 
diff --git a/lib/config/definitions.ts b/lib/config/definitions.ts
index daf81de7c8..598f91dacb 100644
--- a/lib/config/definitions.ts
+++ b/lib/config/definitions.ts
@@ -267,7 +267,7 @@ const options: RenovateOptions[] = [
   {
     name: 'dockerChildPrefix',
     description:
-      'Change this value in order to add a prefix to the Renovate Docker sidecar image names and labels.',
+      'Change this value in order to add a prefix to the Renovate Docker sidecar container names and labels.',
     type: 'string',
     admin: true,
     default: 'renovate_',
-- 
GitLab