It seems that the Docker was not able to execute all parallel builds.
The solution I found is:
Run the setup with option: ./nodebb setup --skip-builds Manually run the build in serial mode: ./nodebb build --seriesThat solved the issue.
[email protected]:/var/www/vhosts/# ./nodebb setup
module.js:340
throw err;
^
Error: Cannot find module 'nconf'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (/var/www/vhosts//app.js:23:13)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
Fix?
[email protected]:/var/www/vhosts/# node -v
v0.10.29
[email protected]:/var/www/vhosts/# npm -v
2.10.1
Debian 7 Stable with Plesk 12
@Andreas-Knight said:
Error: Cannot find module 'nconf'
run npm install
in your nodebb folder. If you already have, then npm install nconf
should do it.
Thanks!!
#closed