[Answered ]-Dockerized Django On Ubuntu

2👍

You have already changed the directory into /BackendServer.

Use this instead:

CMD [ "python", "./manage.py runserver 0.0.0.0:8000" ]

Also note that docker run executes without a tty by default, which will suppress the output. Run with -it to use interactive terminal.

Leave a comment