A rollback is a deploy whose target is a previous successful deploy instead of a new image reference. It uses the same zero-downtime swap, so the App stays reachable throughout.
Steps
- Open the App's detail page in the dashboard.
- Scroll to the deploy history. Each entry shows its image reference and status.
- Find the succeeded deploy you want to return to.
- Choose Roll back on that entry. The App moves to
deploying. - CrabGlamp pulls the earlier image, health-checks it, and swaps traffic once it is healthy — the same flow as a forward deploy.
- The App returns to
runningon the earlier image.
What a rollback restores
A rollback restores the image only. It redeploys the exact image that succeeded before, pinned by its content digest, so you get the same bytes even if the tag has since been overwritten in your registry.
It does not roll back your environment variables or persistent-volume data — those are not versioned. If a bad deploy also changed env vars, update them too (see Set environment variables).