Problem with docker

Simon Fortuna

New Member
Hello! I am really inspired by what your library is possible to offer - great job - and I am trying to integrate it with my existing app but came into technical issue.

My setup is: Dockerhost (Ubuntu 16.04), docker container from your image with port 8444 exposed. I see the port is open on dockerhost, I see it open inside the container, but browser does not show any content for http://address:8444.

On dockerhost the app is stuck on this `FlashphonerWebCallServer: starting` while inside the container ps aux returns
`root 136 1.6 1.6 3070324 205844 ? Sl 21:04 0:32 java -Xmx1024M -XX:+UseCMSInitiatingOccupancyOnly`

Where do I go from here? How do I know the app has started, where should I check if it has started? :)

Many thanks and appreciate your work, looking forward to solving this and focusing on integration
 

Max

Administrator
Staff member
Good day.
I see it open inside the container, but browser does not show any content for http://address:8444.
The port 8444 is used for HTTPS, so please make sure you're accessing the container webinterface by HTTPS https://address:8444/admin/
You can also check if WCS is started inthe container using:
- ps command inside the container
- WCS statistics page http://address:8081/?action=stat (if 8081/tcp port is exposed)
- WCS logs in logging folder (if /usr/local/FlashphonerWebCallServer/logs volume is mounted)
 
Top