after launching via docker run --device /dev/snd:/dev/snd --privileged -it mycroftai/mycroft /bin/bash, I ran supervisord, but am not sure how to test/use the apparently running services:
if I open up port 8000 by adding -p 8000:8000 to the docker run command, I get this error trying to open localhost:8000 in a browser:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/tornado/web.py", line 1390, in _execute
result = self.prepare()
File "/usr/local/lib/python2.7/dist-packages/tornado/web.py", line 2103, in prepare
raise HTTPError(self._status_code)
HTTPError: HTTP 404: Not Found
It would be great if the README had a fourth bullet indicating how to verify that the services are running and what to try next.
after launching via
docker run --device /dev/snd:/dev/snd --privileged -it mycroftai/mycroft /bin/bash
, I ransupervisord
, but am not sure how to test/use the apparently running services:if I open up port 8000 by adding
-p 8000:8000
to the docker run command, I get this error trying to open localhost:8000 in a browser:It would be great if the README had a fourth bullet indicating how to verify that the services are running and what to try next.