there are many examples related to the deployment of django. The way I deploy is nginx + gunicorn + django, where gunicorn communicates with app by visiting wsgi. So the problem is, when I deploy through docker, I don"t use gunicorn, at all, so Wang Ye can still access it? Why?
docker run -it -p 80:80 xxxx(tagname)
web
python3 manage.py runserver 0.0.0.0:80
with this sentence, I can access my own interface on the website, so why can I visit gunicorn even if I don"t use it?