Docker Compose with Microservices - ASP.NET Core Edition

preview_player
Показать описание

This is a recording of a lesson I did a few months ago. In it, I show how we can configure Docker Compose with ASP.NET Core microservices and run our distributed application in an isolated environment.

★★ SUPPORT ME ON PATREON ★★
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

★★ BECOME A BACKER OR SPONSOR ★★
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

★★ FOLLOW ME ON SOCIAL MEDIA ★★
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Рекомендации по теме
Комментарии
Автор

PROTIP: Watch me at 1.5x speed to save time! 😎
Do you use Docker Compose? What is your opinion about it? 🙄 What kind of lessons do you prefer? Shorter or longer? Let me know in the comments! 👇

CodeItUpByAMBITIONED
Автор

Awesome tutorial that uses a very practical example. Appreciate the lesson greatly.

LuisGuzmanJr
Автор

Thanks for the tutorial, but how can I get the source code: the url is not loading!

papalynga
Автор

My aim to open this vidoe was how to auto create dockercompose. And how to set things so we can auto generate docker compose from visual studios support (add=>orchestration support) .

lazer
Автор

Hi Ivo. Would you mind doing a video on your take on functional programming please.

sunnypatel
Автор

Thanks for your detailed explanation. I have one problem, here is my yaml file :

rabbitmq-container:
hostname: rabbitmq-container
image: rabbitmq:3-management-alpine
ports:
- 5672:5672
- 15672:15672
networks:
- test-network

paymentsub:
container_name: payment-sub
image:
build:
context: ./payments-api
dockerfile:
environment:
-
-
ports:
- "5206:80"
networks:
- test-network
depends_on:
- rabbitmq-container
- db

networks:
test-network:

volumes:
db:
driver: local

it has no problem while compose up but docker logs says : System.UriFormatException: Invalid URI: The format of the URI could not be determined. Apparently does not like this line, I tried also "localhost" but the result was the same, then I explecitely set "amqp://localhost:15672" but then it has connection problem ---> Connection failed. Do you have any idea of that issue?

zakonikabadze
welcome to shbcf.ru