Auto Deploy from Container Registry

I noticed that the “latest” tag is not supported for deploying container images from a container repository. I assumed this is how qovery would know what image to deploy when updates are made. If this is the case, how does the auto deploy feature know what image to deploy?

Hi Colin,

Indeed, Qovery does not let you deploy an image with the latest tag to avoid caching issues (as explained here.

So if you need to deploy the latest container image, you can use the CLI from your CI/CD pipeline by using the following command.

qovery container deploy -n "container name" --tag <your_new_tag_here>

Let me know if you have any questions :slight_smile: