You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 21, 2021. It is now read-only.
When building the backend for the website, I was getting errors that nodemon was not installed in auth and socket services.
Recreate
docker-compose up mongo docker-compose up auth config socket
Work-around
I solved it by changing the command attribute in docker-compose.yml to sh -c "npm install && npm run dev" instead of ['npm', 'run', 'dev'] in both socket and auth, but I am not sure if this is the correct way to solve it.
The text was updated successfully, but these errors were encountered:
Info
When building the backend for the website, I was getting errors that nodemon was not installed in
auth
andsocket
services.Recreate
docker-compose up mongo
docker-compose up auth config socket
Work-around
I solved it by changing the
command
attribute indocker-compose.yml
tosh -c "npm install && npm run dev"
instead of['npm', 'run', 'dev']
in bothsocket
andauth
, but I am not sure if this is the correct way to solve it.The text was updated successfully, but these errors were encountered: