Before start the service you need to create the database and run the migrations.
create the database
$ docker-compose up -d release-manager-dbTo run the migrations you need liquibase installed in your machine
// got to the migration folder
$ cd db/migrations
$ liquibase updateTo run the application you need Java version 21 installed.
Starting command
$ ./gradlew bootRun