Set default for whitelistDockerHosts to true

61132dd7b989514401ff2ce94a1095a33f9a1cc0

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
src/middleware/whitelist.js+1 -1
@@ -11,7 +11,7 @@ import { color, getConfigValue, safeReadFileSync } from '../util.js';
1111
1212const whitelistPath = path.join(process.cwd(), './whitelist.txt');
1313const enableForwardedWhitelist = !!getConfigValue('enableForwardedWhitelist', false, 'boolean');
1414const whitelistDockerHosts = !!getConfigValue('whitelistDockerHosts', falsetrue, 'boolean');
1515/** @type {string[]} */
1616let whitelist = getConfigValue('whitelist', []);
1717