Cannot find module for a node js app running in a docker compose environment

前端 未结 3 906
无人共我
无人共我 2021-02-05 00:38

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

3条回答
  •  北荒
    北荒 (楼主)
    2021-02-05 00:51

    If your Dockerfile and package.json files are correct and still have the issue:

    1. Make sure you've rebuilt your container images.

    2. Try

    docker-compose down -v

    before starting the containers again with docker-compose up.

    This removes all volumes.

提交回复
热议问题