Using Testcontainers without JUnit4 dependency

In this blog post I will explain how to run integration test with Testcontainers without using JUnit4 dependency. Testcontainers has support for JUnit5 but it has dependency on JUnit4 libraries. Java frameworks either new or old frameworks with newer versions are not including the JUnit4 dependencies. For example, Spring Boot version 2.4.2 completely removed JUnit4…

Setup RabbitMQ with Docker Compose

This tutorial will show you how to setup RabbitMQ with Docker and docker-compose. RabbitMQ is the most widely deployed open source message broker. RabbitMQ is lightweight and easy to deploy on premises and in the cloud. It supports multiple messaging protocols.Most organizations use RabbitMQ to send and receive messages to communicate between different application/services For…

Easily turn docker run commands into docker-compose files

In this blog post I will cover about few libraries and websites which converts the docker run commands into docker-compose files. composerize composerize can be used from cli and website. Using from CLI composerize is available as npm package. install the composerize with following command. After installing you can use it like below to produce…