I have started a container with some ports open and tries to access the web interface of Tomcat from browser but it's not working.
1)docker run -ti --rm --name server -p 3456:5678 tomcat:8.0 // not working with localhost:3456
2)docker run -ti --rm --name server -expose 8080 tomcat:8.0 //not working localhost:8080
3)docker inspect server // to see the ip:port and tried to access using it as well but no luck
I am using CentOS7 with docker instaled.
Thanks