Deplo

Releases

How your source becomes an image, what triggers a new one, and how to undo it.

Turning your source into a running container, again and again: what build settings control, what makes a new build happen without you clicking anything (automatic deployments), and how to go back to one that worked (rollbacks).


How it works

Every deploy runs through the same three concerns, in order.

Build settings decide how your source becomes an image: which builder runs, what commands it runs, and which port the result listens on. Most apps never touch this, detection handles it.

Automatic deployments decide what makes a new build happen: a push to a tracked branch, a new tag, or a call to a deploy hook URL you hold.

Rollbacks decide what happens when a build was wrong: go back to an image that already worked, in seconds, with no rebuild.

Limits and gotchas

  • Only sources Deplo builds have any of this. A Docker image app skips build settings entirely, and neither a Docker image nor a Compose stack can roll back, there is no single image Deplo owns for either.
  • A rollback does not undo a deploy trigger. Turn off deploy on push first if you are rolling back because the branch itself is broken.

See also

Did this page help you?

On this page