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.
After running ./nodebb setup, my config.json changed. It removes configuration of redis and socket.io.
From this:
{
"url": "http://forum.test.com",
"secret": "5eeff60a-123-4d0f-1234-01685fd23123",
"database": "mongo",
"port": ["4567", "4568"],
"mongo": {
...
},
"socket.io": {
...
},
"redis": {
...
}
}
to
{
"url": "http://forum.test.com",
"secret": "5eeff60a-123-4d0f-1234-01685fd2123",
"database": "mongo",
"port": [
"4567",
"4568"
],
"mongo": {
...
}
}
Is this intended behaviour?