Nubiecloud Docs
Builds

Tracking builds & images

Follow a build (states, logs), cancel or restart it, read the security scan, and manage the built images.

Once a build has started (manual or automatic), follow its progress and manage the images it produces.

Build states

StateMeaning
pendingqueued
runningin progress
succeededfinished successfully — the image is available
failedfailed (check the logs)
cancelledcancelled

Logs

Every build exposes its logs, split by step (fetching the code, building the image…). This is the first place to look when something fails.

💡 A failing build points at the guilty step: Dockerfile not found, wrong source folder, missing dependency… Fix it and restart.

Cancel / restart

  • Cancelling a running build moves it to the cancelled state.
  • Restarting a build reuses the same configuration (branch, tag…).

Security scan

Built images can be scanned to detect known vulnerabilities (CVEs). The result lists the vulnerabilities found in the image — useful before going to production.

Built images

The images produced are kept and reusable:

  • List a project's images (with repository, tag, date, build duration, status).
  • Reuse an image at deployment time — this is also what makes rollback to an earlier version possible.
  • Delete images that are no longer needed (multi-selection available).

💡 Adopt readable, versioned tags (v1.2.0) rather than latest everywhere: it becomes far easier to tell which image to deploy or roll back to.

See also

On this page