Hi Tomer,
> I'm new to linux, and running ubuntu through virtualbox.
> I followed the installation guidelines of docker, and of openface as well.
> Nevertheless, when trying to run the web demo, I can't access
> "localhost:8000" or "localhost:9000" through firefox/chrome browser.
Do I understand correctly that you're running OpenFace in Docker in a VM?
Where is the browser you're trying to access it from?
On your host or in the VM?
The networking in the web demo in this scenario can be tricky to set up,
especially if you're trying to use a webcam.
It's simplest if you can use your webcam from the browser inside of
your VM.
The Docker container will start an HTTP server on port 8000 and a
WebSocket server on port 9000.
To access them from the VM, you need to find the IP address of the
Docker container and use that instead of localhost.
Once you find the IP address, you should be able to use a browser in
your VM to make sure you can connect to the HTTP server at
`http://docker-ip:8000`.
However, the demo probably won't work if you're using Chrome
because of
https://github.com/cmusatyalab/openface/issues/75.
Let me know if you're able to connect to the HTTP server
and I can advise you on next steps.
-Brandon.