Skip to content
Discussion options

You must be logged in to vote

The URL needs a colon before the port:

http://localhost:7000/login

or just:

http://localhost:7000

localhost.7000/login is treated as a hostname, not as localhost on port 7000.

I would check the container state and logs next:

docker compose ps
docker compose logs odysseus

The README says to open http://localhost:7000 after the containers are healthy, and the first admin password is printed in docker compose logs odysseus.

If port 7000 is already taken, set APP_PORT=7001 in .env, recreate the container, then open:

http://localhost:7001

Compose binds the web UI to 127.0.0.1 by default, so that address is meant to be opened from the same machine unless you intentionally changed APP_BIND.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by createj-noob
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants