Container Registry allows rolling back to previous image versions by pulling specific tagged versions, supporting semantic versioning and custom labels.
Yes. You can roll back to a previous version of a container image in Vultr Container Registry by pulling the image tagged with the desired version. Tags are used to identify specific builds of an image, such as semantic versions (1.0.0
), release identifiers (stable
, latest
), or custom labels.
To perform a rollback, retrieve the version details by making a GET
request to the List Artifacts API endpoint, and then use the docker pull
command with the appropriate tag. For example:
$ docker pull <registry-region>.vultrcr.com/<registry-name>/<repository>:<tag>
You can view and manage repositories in your Vultr Container Registry through the Repositories tab in the Vultr Customer Portal, or fetch repository details programmatically using the Vultr API or CLI.