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…

Integration Testing with Spring Boot,Testcontainers,Oracle

In this blog post I show how to use oracle -xe database with Testcontainers for doing database integration tests in Spring Boot application. I have already written a detailed blog post about database integration testing with Spring Boot and Testcontainers in following article In above blog post, I have used PostgresSQL database. In this blog…

Complete Guide to Database Migrations with Flyway and Spring Boot

In this blog post , I’ll show you how to use Flyway database migrations with Spring Boot. I’ll walk you through the process of setting up Flyway, creating migrations, and migrating your database. What is Database Migration ? Let’s say that we’re developing a web application that’s going to use a Postgres database. If we…