lossless1024 / StreaMonitor

Adult live stream downloader for advanced people. I could have chosen a better name.
GNU General Public License v3.0
172 stars 42 forks source link

Docker container questions #121

Open glottisfaun0000 opened 8 months ago

glottisfaun0000 commented 8 months ago

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.

DerBunteBall commented 8 months ago

The usability of the Web UI can depend on network settings in detail.

Expose the ZeroMQ Port and use Controller.py

bcse commented 2 months ago

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)