Reopen guide
How to reopen Odysseus
If you closed your browser or terminal after installing Odysseus, you usually do not need to reinstall it. Check whether the Docker stack is still running, restart it if needed, then open the local web UI again.
1. If only the browser was closed
Open the same local URL again. For a typical Docker install, try:
http://localhost:7000
On a remote server, replace localhost with the server IP or your private domain.
2. If the terminal was closed
If you ran Odysseus with docker compose up in the foreground, closing the terminal may stop the stack. Go back to the Odysseus repository and check compose state.
cd odysseus
docker compose ps
3. Restart Odysseus
If services are stopped, start them again. Detached mode keeps them running after the terminal closes.
docker compose up -d
docker compose logs odysseus
4. Log in again
Use the same account and password as before. If login fails, do not reinstall first. Check credentials and persistent volumes.
Prevent the problem next time
- Use
docker compose up -dafter the first successful run. - Bookmark the local Odysseus URL.
- Save the repository path where you run compose commands.
- Document the admin account and model provider endpoint.