I am sorry for my very newbie question, but I am having a terrible day figuring out this error, I have an Express app and I am trying to run it in docker compose. I\'ve used thi
If your Dockerfile and package.json files are correct and still have the issue:
Dockerfile
package.json
Make sure you've rebuilt your container images.
Try
docker-compose down -v
before starting the containers again with docker-compose up.
docker-compose up
This removes all volumes.