I am learning about MLFlow and Docker Containers. I created an ubuntu container and mapped port 5001 of the host to 5000 of the container.
docker run -it -p 5001:5000 -v D:\Docker\mlflow:/home --name mlflow ubuntu:18.04 bash
Inside the container, I installed the mlflow using pip
pip install mlflow
When I run the mlflow UI it's running but I can't access it from my host PC (localhost:5001) is not working.
Did I do any mistakes anywhere?