This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 3.8.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 81f1308f94fab29a11a7f45ada94e552f8c6bef3 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Thu Apr 4 12:34:01 2024 +0100 Remove jsch container DOCKER_MODS configuration --- .../org/apache/camel/quarkus/component/jsch/it/JschTestResource.java | 1 - 1 file changed, 1 deletion(-) diff --git a/integration-tests/jsch/src/test/java/org/apache/camel/quarkus/component/jsch/it/JschTestResource.java b/integration-tests/jsch/src/test/java/org/apache/camel/quarkus/component/jsch/it/JschTestResource.java index 896d6fe60e..195cee2ed6 100644 --- a/integration-tests/jsch/src/test/java/org/apache/camel/quarkus/component/jsch/it/JschTestResource.java +++ b/integration-tests/jsch/src/test/java/org/apache/camel/quarkus/component/jsch/it/JschTestResource.java @@ -38,7 +38,6 @@ public class JschTestResource implements QuarkusTestResourceLifecycleManager { try { container = new GenericContainer(JSCH_IMAGE) .withExposedPorts(JSCH_PORT) - .withEnv("DOCKER_MODS", "linuxserver/mods:openssh-server-openssh-client") .withEnv("PASSWORD_ACCESS", "true") .withEnv("USER_NAME", USERNAME) .withEnv("USER_PASSWORD", PASSWORD)