Forum Discussion
saurabhmasc
Sep 19, 2022Copper Contributor
CI/CD pipeline for microservice.
Hi All, We are new to Azure DevOps and start managing our project and planning to have CI/CD pipeline from our microservice. We are planning to have the below flow for each service: 1. Whene...
jone97
Jul 10, 2026Copper Contributor
Your flow is mostly correct. Build the Docker image once in the CI pipeline, deploy the same image to UAT, and promote that exact tested image to Production.
Use feature branches for development and Git tags for approved releases. Create a unique image tag for every build, such as a version number or commit ID. Avoid using only the latest tag for Production.
Microsoft Learn, hands-on labs, and PassITExams practice resources can help you understand Azure DevOps and CI/CD concepts.