Web interface not reachable
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?
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
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!
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