StreaMonitor
StreaMonitor copied to clipboard
Docker container questions
When running from the docker compose, I can't figure how to execute commands (add, start, stop, etc). I can't do anything in docker container attach
and can't figure out how you would with docker exec
.
Also, with the port forwarded in the ports:
compose section, I still can't access the web ui from the browser. Wondering if this is the same thing that makes the web ui inaccessibly from anywhere but localhost.
The usability of the Web UI can depend on network settings in detail.
Expose the ZeroMQ Port and use Controller.py
The web ui can only be access from localhost because it only listen on 127.0.0.1
Change this in httpmanager.py will enable access web ui from other location
- app.run(host='127.0.0.1', port=5000)
+ app.run(host='0.0.0.0', port=5000)