Skip to content

Commit

Permalink
docs: Clarify dockerChildPrefix option (#10539)
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed Jun 23, 2021
1 parent c128e73 commit 052e15e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/usage/self-hosted-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion lib/config/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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_',
Expand Down

0 comments on commit 052e15e

Please sign in to comment.