Can't connect to server running inside docker container (Docker for mac) Can't connect to server running inside docker container (Docker for mac) docker docker

Can't connect to server running inside docker container (Docker for mac)


Okay so i found the solution to my problem. The issue was not in the docker port mapping. The actual problem is this line :

python manage.py runserver 80

This runs the server on 127.0.0.1:80 . The localhost inside the docker container is not the localhost on your machine . So the solution is running the server using this command :

python manage.py runserver 0.0.0.0:80

I was able to access the webpage after this. If you run into the same problem where you are not able to connect to the django server running inside your docker container , you should try running the server on 0.0.0.0:port. You will be able to access it in your browser using localhost:port . Hope this helps someone.