I am running docker image of a Django application with an entrypoint like this:
export PYTHONUNBUFFERED=1
python3 manage.py runserver 0.0.0.0:8080
In settings.py DEBUG=True.
However StatReloader doesn’t seem to boot up (no logs regarding it’s existence) to watch for module/.py file changes.
Also there is mount configured so that the docker is aware of host changes and I have double checked it using docker exec.
2