Developer here! This library arose out of frustration with running Java tests that had some kind of non-Java dependencies - e.g. databases and web browsers for UI testing. Testcontainers lets you add Docker containers to your tests, linked to the lifecycle of the test rather than having to be externally managed from the outside. I've found it useful, and hope others do too.<p>A few blog posts outline some of the ways the library can be used:<p>* JUnit integration testing with Docker and Testcontainers [1]<p>* Fun with Disque, Java and Spinach [2]<p>* Better JUnit Selenium testing with Docker and Testcontainers [3]<p>[1] <a href="https://rnorth.org/24/junit-integration-testing-with-docker-and-testcontainers" rel="nofollow">https://rnorth.org/24/junit-integration-testing-with-docker-...</a><p>[2] <a href="https://rnorth.org/25/fun-with-disque-java-and-spinach" rel="nofollow">https://rnorth.org/25/fun-with-disque-java-and-spinach</a><p>[3] <a href="https://rnorth.org/26/better-junit-selenium-testing-with-docker-and-testcontainers" rel="nofollow">https://rnorth.org/26/better-junit-selenium-testing-with-doc...</a>