Home > Net >  docker-web-1 | python: can't open file '/code/manage.py': [Errno 2] No such file or d
docker-web-1 | python: can't open file '/code/manage.py': [Errno 2] No such file or d

Time:11-15

enter image description here

when i run command docker-compose up and that time error comes, what to do anyone help me? docker-web-1 | python: can't open file '/code/manage.py': [Errno 2] No such file or directory[enter image description here][2]

CodePudding user response:

Just make sure that the path to the code file is present properly. The issue here is that it's not able to find the file in the path that was provided. If that looks correct, please make sure that you include proper permissions inorder for docker compose to build the file.

CodePudding user response:

You are not providing the correct path to the file, this might be as a result of using the wrong slash for a specific operating system, it would be more clear if you shared a screenshot.

  • Related