fix(config): disable docker by default

This commit is contained in:
Jef LeCompte
2020-12-11 12:50:18 -05:00
parent e2bf5749c1
commit dca916b64e
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -176,7 +176,7 @@ const browser = {
userAgent: ''
};
const docker = envOrBoolean(process.env.DOCKER);
const docker = envOrBoolean(process.env.DOCKER, false);
const logLevel = envOrString(process.env.LOG_LEVEL, 'info');