From the course: Azure Microservices with .NET Core for Developers

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Debugging and configuring Docker Compose in a microservices solution

Debugging and configuring Docker Compose in a microservices solution - Azure Tutorial

From the course: Azure Microservices with .NET Core for Developers

Start my 1-month free trial

Debugging and configuring Docker Compose in a microservices solution

- [Instructor] Let's go ahead and expand the Docker Compose project. Here you will find the Docker Compose and Docker Compose override YAML files when Docker Compose runs but files will be merged into a single one. The goal of the Docker Compose YAML file is to include all the settings that don't change between deployments, in this case we're going to modify the override file as you can see it includes additional settings such as the ports, let's modify the ports setting in order to expose each container to a different external port let's start by changing the products microservice we're going to use 6001 and for the customers microservice we're going to use 6002 orders 6003 and finally search 6004. As you can see I have other configuration elements in the orders microservice this is because when I created the orders microservice project I missed to change the HTTPS configuration which is enabled now,…

Contents