Docker image - accessing app

0
I was able to create a docker image and able to run my application in the docker container. I am not able to access the application with http://localhost:8080/. Please find the screenshots. I am new to Docker and would need your help here. Please let me know if any additional steps need to perform here. https://docs.mendix.com/developerportal/deploy/run-mendix-docker-image    
asked
1 answers
1

did you defined port for docker container ? for example 

docker run -it \
  -p 8080:80 \
  -e ADMIN_PASSWORD=Password1! \
  -e DATABASE_ENDPOINT=postgres://mendix:mendix@172.17.0.2:5432/mendix \
  -e MX_Module_Constant=ABC123 \
  -e LICENSE_ID=<UUID> \
  -e LICENSE_KEY=<LICENSE_KEY> \
  mendix/mendix-buildpack:v1.2  

Please refer to this guide line below 

https://github.com/mendix/docker-mendix-buildpack

answered