! Standard or custom Docker image ! One instance for all tests, no IDE support
Slide 39
Testcontainers
Slide 40
Testcontainers is a Java library that supports JUnit tests, providing lightweight, throwaway instances of common databases [...] that can run in a Docker container.
Slide 41
Dependency @ClassRule public static GenericContainer redis = new GenericContainer("redis:3.0.2") .withExposedPorts(6379);