I launch application from Docker. Inside the container I invoke the command:

python manage.py runserver 8080 

that is, inside the container, the application runs on port 8080. How to specify a docker so that on the host machine the application was also available on port 8080?

0