wise-client | npm ERR! code ENOENT #11
-
Hi everyone, I am trying to deploy WISE platfom with docker-compose, since once yml is set it should run and update everything by itself, nearly maintaince-free, however this is the error I have encountered: CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES wise-api | bash: line 1: /app/create-application-dockerdev-properties-if-necessary.sh: No such file or directory /root/.npm/_logs/2023-09-09T05_13_02_151Z-debug-0.log npm version 9.8.1 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Actually this is quite a stupid question, followed the instruction and the it worked, however is there anyway to change the admin port 81? |
Beta Was this translation helpful? Give feedback.
-
add |
Beta Was this translation helpful? Give feedback.
Hi, thanks for the reply
Well this is for future reference, since newbie like me may also run into this kind of problem.
If anyone seen the same error message I posted eailer, it means you are skipping the npm install step in the instruction.
Sidenote: For the weird npm ERR deprecated messages at this step, after digging, it was caused by NodeJS version.
So I installed npm and switched to Node 18, all the errors were gone.
And these are the commands:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
~/.bashrc
nvm install 18
nvm use 18
nvm ls
As for the listening port, reason for that been is I am also using NginxProxyManager.
Nginx is such a pain to use, and …