unable to access this link localhost.7000/login #4930
-
I am past most of the process thanks to tutorials but I'm stuck here. The link can't seem to work. It suppose to direct me to login part of the installation. Any tips? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The URL needs a colon before the port: or just:
I would check the container state and logs next: docker compose ps
docker compose logs odysseusThe README says to open If port Compose binds the web UI to |
Beta Was this translation helpful? Give feedback.


The URL needs a colon before the port:
or just:
localhost.7000/loginis treated as a hostname, not aslocalhoston port7000.I would check the container state and logs next:
The README says to open
http://localhost:7000after the containers are healthy, and the first admin password is printed indocker compose logs odysseus.If port
7000is already taken, setAPP_PORT=7001in.env, recreate the container, then open:Compose binds the web UI to
127.0.0.1by default, so that address is meant to be opened from the same machine unless you intentionally changedAPP_BIND.