Kevin Wittek

Results 305 comments of Kevin Wittek

@baez90 Thanks for the explanation, I was initially missing the meaning of `remap` in this context. I agree that this likely helps with the DX (developer experience) if the test...

I just wanted to add a reference to an issue I remembered from the Compose project where someone asked if `compose` can be used as a library and actual API,...

Maybe `tc-go` is abstracting compose further away as `tc-java` does it, but Compose V2 has some pretty significant breaking changes, as we found while working on https://github.com/testcontainers/testcontainers-java/pull/5608 (@eddumelendez can probably...

@marcphilipp There are indeed plans to remove the dependency to JUnit4 from the core of Testcontainers and bring JUnit4 support into a module, similar to how we do it for...

I'd also be happy to chime in if any input or advice from the Testcontainers side of things is helpful 🙂 Do I understand it correctly that the integration of...

Thanks for the detailed explanation @phillipross. Let me know if there is anything we can do from the Testcontainers side of things to support any efforts in this direction. TBH,...

Testcontainers can be used as a complete substitute for Docker Compose. While it can also delegate to Docker Compose, using TC directly gives more flexibility in addition to a more...

On a first look, there are some issue with this container definition: ``` new GenericContainer( DockerImageName .parse("quay.io/wildfly/wildfly") .asCompatibleSubstituteFor("jboss/wildfly") ) .withExposedPorts(8080, 9990) .withCreateContainerCmdModifier(cmd -> cmd.withCmd("/opt/jboss/wildfly/bin/add-user.sh admin Admin@123 --silent").exec()) .withCommand("/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0",...

AFAIK this is a known issue with netflix based metrics having duplicate keys, which Prometheus does not like. See https://github.com/prometheus/client_java/issues/130

Hi, thanks for the PR. We want a release process that's similar to the one of testcontainers-java. So we'd need something like the [deploy.sh](https://github.com/testcontainers/testcontainers-java/blob/master/release/deploy.sh) file as well I assume.