Accessing the App
Once the services are running, use the following URLs to access each component.
Service URLs
| Service | URL |
|---|---|
| DocBot UI | http://<HOST_IP>:3000 |
| Backend API | http://<HOST_IP>:8000 |
| API docs (Swagger UI) | http://<HOST_IP>:8000/docs |
| Qdrant dashboard | http://<HOST_IP>:6333/dashboard |
Replace <HOST_IP> with your server's IP address, or use localhost if you are accessing from the same machine.
Changing the UI Port
The default UI port is 3000. To use a different port, set DOCKER_PORT in your .env file:
DOCKER_PORT=8080
Then restart the UI service:
docker compose up -d ui
First Login
- Navigate to
http://<HOST_IP>:3000 - Log in with the default admin credentials (set in
.envviaDEFAULT_ADMIN_USERandDEFAULT_ADMIN_PASSWORD) - Change the default password immediately before exposing the service to other users. See Changing Password.