From the course: Azure Kubernetes Service (AKS): Deploying Microservices

Unlock the full course today

Join today to access over 24,900 courses taught by industry experts.

Creating Docker images

Creating Docker images

- [Instructor] Let's create a Docker image for at least one of our microservices to be sure it will build successfully when we automate with CI/CD pipelines. Before we start creating images, let's check this out. In a typical setting, several development teams of two or more developers would work on microservices for an application. Team A could be working on authentication or user management microservice, Team B on payments and orders microservices, C on posts and comments and so on. That way, it's easier to test the microservices locally since you're only focused on one or two services. And recall that microservices must run independently and on their data, allowing you to test if your functions are correctly defined and to fix bugs immediately. Well, in some cases this might be missing and maybe a single developer would develop multiple microservices. In that case, you might need a way to locally test your…

Contents