Skip to Content

Log Viewer

Companion Hub includes a built-in log viewer in the dashboard under Settings β†’ Logs.

Viewing logs in the dashboard

Navigate to Settings β†’ Logs to see real-time application logs. You can filter by service and search for specific entries.

Viewing logs from the CLI

For a specific app β€” this is the one you want most of the time:

cihub app logs <app-name>

For the Hub stack itself:

cihub logs

Viewing logs via Docker

If you need raw Docker output, list the containers first:

docker ps --format '{{.Names}}'

Then follow one of them:

docker logs -f <container-name>

Hub containers are named ci-os-hub, ci-hub-db, ci-os-hub-queue, and ci-hub-traefik. See Docker & Companion Hub for what each one does.

Last updated on