I hosted our application inside a docker container. When I run docker ps
command, it gave info like below.
CONTAINER ID IMAGE
docker ps command shows the running container which displays the port your application is running. On browser type http://localhost:54529/your_application_page. if you are running application locally, then this is the port which needs to be changed in browser to access container application.
Try curl http://localhost:32795/testapp/login.jsp
.
Your docker ps
shows that container's port 8080 is bound to external port 32795 : [...] 0.0.0.0:32795->8080/tcp [...]