testcontainers-scala
testcontainers-scala copied to clipboard
Docker containers for testing in scala
Right now with Postgres, the JDBC url generated is using localhost, but in my use case it's not enough. In some tests I used a container that needs the Postgres...
I created a DockerComposeContainer and gave it an explicit `identifier` of `SomeCamelCaseName`. ``` override val container: Container = DockerComposeContainer( composeFiles = new File("../docker/docker-compose-it.yml"), exposedServices = Seq(ExposedService("my-service", 9109)), identifier = "SomeCamelCaseName",...
I'd like to contribute back to this project, but not really sure of where to put the code. I've got a working Hadoop HDFS container, implemented as a trait. See...
I have tried [filing an issue at `testcontainers-java`](https://github.com/testcontainers/testcontainers-java/issues/5978) but they won't look at it since we use `testcontainers-scala`. I thought it only potentially happens when running concurrently but we have...
Hello to everyone, I'm running some sbt/scala project that's using the test-container-scala library. In particular I'm using the following dependencies: ``` "com.dimafeng" %% "testcontainers-scala-scalatest" % "0.36.1" % IntegrationTest, "com.dimafeng" %%...
I see in the docs it's recommended to use the `scalatest` namespaced `TestContainersForAll`. I didn't realize this existed and my team universally uses `ForAllTestContainer`. Is `ForAllTestContainer` even meant to be...
Hello! I want to use Docker Compose V2 standalone format (https://docs.docker.com/compose/install/standalone/), but it has a different syntax: "docker-compose" instead of "docker compose." I need this because I'm running in GitLab...
As a Developer I want to be able to start Kafka and Schema Registry in the same network using public interfaces/constructors. Now it is impossible for two reasons: 1. starting...
I believe the error addressed in https://github.com/testcontainers/testcontainers-scala/pull/136 and https://github.com/testcontainers/testcontainers-scala/pull/216 can actually be fixed for all client types if you use the auth dependency directly rather than individual client libraries. I've...
Hi everyone. Please I need some assistance here. Recently I started a task in which I had to integrate PostGIS to the currently implemented test suite which uses testcontainers to...