StreaMonitor icon indicating copy to clipboard operation
StreaMonitor copied to clipboard

Web interface not reachable

Open skybarberom opened this issue 9 months ago • 3 comments

I'm trying to access the web interface (docker installation). From what I understood it's exposed on port 5000 and so I added port 5000 on the docker compose. I changed the server from 127.0.0.1 to 0.0.0.0 to accept connection from all IPs

If I try from my browser I arrive to the authentication and I write admin/admin but I get Not Found The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

Am I missing something?

skybarberom avatar Mar 21 '25 11:03 skybarberom

See the Dockerfile.

I guess the reason is that the web part isn't copied into the container.

You could try to mount it as a volume

volumes:
   ....
   - ./web/:/app/web/:ro

Or extend the Dockerfile after line 14 with this:

COPY web ./web/

Needs to placed in /app/web/ the WORKDIR directive makes /app to workdir so it can be copied to ./

Make sure to rebuild the container and eventually adjust your docker-compose.yml to it.

Hope this helps.

Best Regards

DerBunteBall avatar Mar 21 '25 11:03 DerBunteBall

See the Dockerfile.

I guess the reason is that the web part isn't copied into the container.

You could try to mount it as a volume

volumes: ....

  • ./web/:/app/web/:ro Or extend the Dockerfile after line 14 with this:

COPY web ./web/ Needs to placed in /app/web/ the WORKDIR directive makes /app to workdir so it can be copied to ./

Make sure to rebuild the container and eventually adjust your docker-compose.yml to it.

Hope this helps.

Best Regards

thank you. It worked!

skybarberom avatar Mar 21 '25 12:03 skybarberom

wow after many months of no web UI, just saw this and it solved it for me as well. I have to say the new web interface is great

MartinR577 avatar Apr 12 '25 19:04 MartinR577