Browser app not working

Hi,

I installed Dremio docker container for Windows 8.1 (Docker Toolbox).

To start the service I type:

docker run -p 9047:9047 -p 31010:31010 -p 45678:45678 -p 32010:32010 --name Dremio dremio/dremio-oss

A lot of things appear on the screen, but there is the following message:
“Dremio Daemon started as master”

However, when I try to access HTTP:localhost:9047/ in the browser I get: “ERR_CONNECTION_REFUSED”.

I use CTR^C to run a new command and I try:

docker start Dremio

When using “netstat -an” there is no port 9047 with any status or any IP.

I checked my Windows Firewall and “docker.exe” has inbound access to all ports.

Any ideas?

Best,
Bruno

Solved the problem.

I had to use the actual IP from the container, not localhost. I discovered it by using

Bloco de Citação

“docker-machine IP”

And then I was able to access it by the browser using: http://192.168.99.100/9047