Rabbitmq Concepts

Before we delve deeper into RabbitMQ concepts, let’s set up this app on our computer. In my opinion, the best approach is to utilize Docker. I prefer to avoid writing lengthy commands in the terminal, so we will opt for a Docker Compose file. Create folder project folder and create this file: # ./docker-compose.yml version: "3.7" services: rabbitmq: image: rabbitmq:3-management-alpine container_name: rabbitmq_learn ports: - 5672:5672 - 15672:15672 Notice that I used management-alpine version that include web management console in it, available in port 15672....

September 10, 2023