I am on Ubuntu 14.04
and using docker to run Play Framework application in Java. The tool used to automate the build is ingensi-play-framework.
The command to start the application within docker is
docker run -d -v /path/to/play/project:/app:rw -P ingensi/play-framework
taken from the above link. After this, when I run docker ps
, I get this:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
3eb2285118dc ingensi/play-framework "activator run" 14 minutes ago Up 14 minutes 0.0.0.0:32785->8888/tcp, 0.0.0.0:32784->9000/tcp hungry_hopper
and I hit localhost:32784
, I get the message
This webpage is not available
ERR_CONNECTION_RESET
on Google Chrome. I searched on the Internet but to no avail. Please help.