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! 👇 You can get my source code from here: bit.ly/my-source-ciu 👈
@LuisGuzmanJr Жыл бұрын
Awesome tutorial that uses a very practical example. Appreciate the lesson greatly.
@nkwojikenneth2 жыл бұрын
Thanks for the tutorial, but how can I get the source code: the url is not loading!
@lazer94152 жыл бұрын
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) .
@sunnypatel10453 жыл бұрын
Hi Ivo. Would you mind doing a video on your take on functional programming please.
@NoTalentGuy3 жыл бұрын
Second! 😎
@nikolaykrastev46993 жыл бұрын
Third, but whats the game? :)
@NoTalentGuy3 жыл бұрын
@@nikolaykrastev4699 Idk :S
@zakonikabadze47872 жыл бұрын
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: znikabadze/paymentssubscriberweb:dev build: context: ./payments-api dockerfile: ./DamenWallet.Payments.Subscriber.Web/Dockerfile environment: - RabbitMQConfig__BrokerConnectionString=rabbitmq-container - RabbitMQConfig__SubscriberName=Payments 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 RabbitMQConfig__BrokerConnectionString=rabbitmq-container 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 ---> RabbitMQ.Client.Exceptions.ConnectFailureException: Connection failed. Do you have any idea of that issue?