How to access my Docker application(IP Details) from my local system

I have deployed my application in docker now i want access it from my local system. The ip details of my application container that i was specifying is http://172.17.0.3:8099/createCustomer/abcschool.

Please let me know how i can access my application from my system browser.

Thanks
titan555

Host OS?
docker run command?
Did you provide a -P or -p option to expose the port?

If someone tries to access a containerized application using the container ip, it is usaly the wrong approach. Hint1: a container ip can change on every container restart. Hint2: you might want to walk thru the tutorials?