Web UI is not accessible with Docker installation
Hello, how do I open web access to coder running in a docker?
I try to run it according to the manual:
Seems like it's running correctly:
The Web UI is not accessible.
I try to open ports for the docker container:
Stopping ufw didn't help.
Adding -p 443:443 also didn't help.
How to finalize the Docker installation correctly so that the Web UI is accessible?
7 Replies
<#1117438811450908760>
Category
Help needed
Product
Coder OSS (v2)
Platform
Linux
Logs
Please post any relevant logs/error messages.
Try 3000:80
As the coder is running in http mode
In this case it should be -p 80:3000
Have it running with:
Now trying to do http request:
Is it possible to enable verbose debug mode somehow?
Set
CODER_VERBOSE=true
I am trying to troubleshoot why I cannot login from the command line. I added this but the logs still only say where to login and no other information. How can I see more. I found this, but do not know how to enable it in my docker container using docker compose.
hey, your coder server is not listening on port :443 since you have not configured HTTP/s
try setting the
CODER_ADDRESS
environment variable to 0.0.0.0:3000
, it is denying the request because Docker is requesting to 0.0.0.0:3000
, but the Coder server is listening on 127.0.0.1:3000
User left the server@Phorcys closed the thread.