I would like to try new features in Thunderhub 0.13.x by installing 0.13.6.
Naively I just modified apps/thunderhub/docker-compose.yml
and added image: apotdevin/thunderhub:v0.13.6
(no hash).
On startup I get NMP errors:
> thunderhub@0.13.6 start /app
> cross-env NODE_ENV=production nest start
events.js:292
throw er; // Unhandled 'error' event
^
Error: spawn nest ENOENT
at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)
at onErrorNT (internal/child_process.js:465:16)
at processTicksAndRejections (internal/process/task_queues.js:80:21)
Emitted 'error' event on ChildProcess instance at:
at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)
at onErrorNT (internal/child_process.js:465:16)
at processTicksAndRejections (internal/process/task_queues.js:80:21) {
errno: -2,
code: 'ENOENT',
syscall: 'spawn nest',
path: 'nest',
spawnargs: [ 'start' ]
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! thunderhub@0.13.6 start: `cross-env NODE_ENV=production nest start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the thunderhub@0.13.6 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/node/.npm/_logs/2022-02-17T18_41_13_407Z-debug.log
Are there some environmental variables that have to be added to dockerCompose?