Spring Boot - Testing Spring Boot Applications
You wrote this test using Testcontainers but it fails with
org.testcontainers.containers.ContainerLaunchException. What is the likely cause? @Container
static PostgreSQLContainer> postgres = new PostgreSQLContainer<>("postgres:latest");
@Test
void testDb() {
// test code
}