DigitalHealthIntegration / rdt-reader

MIT License
2 stars 0 forks source link

Django startup needs to start server on 0.0.0.0:9000 #17

Closed rightparen closed 5 years ago

rightparen commented 5 years ago

The existing code only listens on localhost. With --net=host on Linux, this allows local testing, but it is not possible to reach the server over the network.

Dockerfile needs a change in the last runserver line to read:

    python3 /home/rdtreader/rdt-reader/django_server/manage.py runserver 0.0.0.0:9000
anandRIyer commented 5 years ago

fixed this in the dockerfile sript.