diff --git a/lib/workers/repository/onboarding/pr/config-description.ts b/lib/workers/repository/onboarding/pr/config-description.ts
index 313f5c8f7cb0b0379d4d3c3d6adf3b7e76c0856e..34850ab68c68bbca4447b07c5315d839b5d81f31 100644
--- a/lib/workers/repository/onboarding/pr/config-description.ts
+++ b/lib/workers/repository/onboarding/pr/config-description.ts
@@ -3,11 +3,6 @@ import { logger } from '../../../../logger';
 import { configFileNames } from '../../../../config/app-strings';
 import { RenovateConfig } from '../../../../config';
 import { PackageFile } from '../../../../manager/common';
-import {
-  MANAGER_CIRCLE_CI,
-  MANAGER_DOCKER_COMPOSE,
-  MANAGER_DOCKERFILE,
-} from '../../../../constants/managers';
 
 const defaultConfigFile = configFileNames[0];
 
@@ -38,22 +33,12 @@ export function getConfigDesc(
 ): string {
   logger.debug('getConfigDesc()');
   logger.trace({ config });
-  let descriptionArr = getDescriptionArray(config);
+  const descriptionArr = getDescriptionArray(config);
   if (!descriptionArr.length) {
     logger.debug('No config description found');
     return '';
   }
   logger.debug({ length: descriptionArr.length }, 'Found description array');
-  const enabledManagers = packageFiles ? Object.keys(packageFiles) : [];
-  if (
-    !(
-      enabledManagers.includes(MANAGER_DOCKERFILE) ||
-      enabledManagers.includes(MANAGER_CIRCLE_CI) ||
-      enabledManagers.includes(MANAGER_DOCKER_COMPOSE)
-    )
-  ) {
-    descriptionArr = descriptionArr.filter(val => !val.includes('Docker-only'));
-  }
   let desc = `\n### Configuration Summary\n\nBased on the default config's presets, Renovate will:\n\n`;
   desc += `  - Start dependency updates only once this onboarding PR is merged\n`;
   descriptionArr.forEach(d => {
diff --git a/test/workers/repository/onboarding/pr/__snapshots__/config-description.spec.ts.snap b/test/workers/repository/onboarding/pr/__snapshots__/config-description.spec.ts.snap
index e829c9b984d4447d9b2cb27d3106097fc18c3da3..d6386d3a946ddfba87fffa74d8630aaf41d89bb9 100644
--- a/test/workers/repository/onboarding/pr/__snapshots__/config-description.spec.ts.snap
+++ b/test/workers/repository/onboarding/pr/__snapshots__/config-description.spec.ts.snap
@@ -15,23 +15,6 @@ Based on the default config's presets, Renovate will:
 "
 `;
 
-exports[`workers/repository/onboarding/pr/config-description getConfigDesc() returns a filtered list 1`] = `
-"
-### Configuration Summary
-
-Based on the default config's presets, Renovate will:
-
-  - Start dependency updates only once this onboarding PR is merged
-  - description 1
-  - description two
-  - something else
-
-:abcd: Would you like to change the way Renovate is upgrading your dependencies? Simply edit the \`renovate.json\` in this branch with your custom config and the list of Pull Requests in the \\"What to Expect\\" section below will be updated the next time Renovate runs.
-
----
-"
-`;
-
 exports[`workers/repository/onboarding/pr/config-description getConfigDesc() returns a full list 1`] = `
 "
 ### Configuration Summary
diff --git a/test/workers/repository/onboarding/pr/config-description.spec.ts b/test/workers/repository/onboarding/pr/config-description.spec.ts
index 4cc1cb2de24e56e45307d254f2c16b2eb6a8996c..2c8296e437ff72d0a75589df3582a89fa5125ba9 100644
--- a/test/workers/repository/onboarding/pr/config-description.spec.ts
+++ b/test/workers/repository/onboarding/pr/config-description.spec.ts
@@ -29,20 +29,6 @@ describe('workers/repository/onboarding/pr/config-description', () => {
       expect(res).toMatchSnapshot();
       expect(res.indexOf('Docker-only')).not.toBe(-1);
     });
-    it('returns a filtered list', () => {
-      const packageFiles = {
-        npm: [],
-      };
-      config.description = [
-        'description 1',
-        'description two',
-        'something else',
-        'this is Docker-only',
-      ];
-      const res = getConfigDesc(config, packageFiles);
-      expect(res).toMatchSnapshot();
-      expect(res.indexOf('Docker-only')).toBe(-1);
-    });
     it('assignees, labels and schedule', () => {
       delete config.description;
       config.packageFiles = [];