Connection lost overlay
If you see a black “Connection Lost” screen:- Cause: The application cannot reach the Postgres database.
- Solution:
Check if the database container is running
db container in the output. If it is not listed or shows Exited, the container has stopped.Logs and diagnostics
To see what the application is doing in real time:Health endpoint
Collabase exposes a built-in health endpoint used by Docker’s health check. You can call it manually to confirm the system state:| Response | Meaning |
|---|---|
200 OK | The system is READY and healthy |
503 Service Unavailable | The system is in a setup or update state — normal during first run or migration |
Container management
| Action | Command |
|---|---|
| Restart all containers | docker compose restart |
| Hard reset (keep data) | docker compose down && docker compose up -d |
| View running containers | docker ps |
| Rebuild image (rarely needed) | docker compose up -d --build |
