We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77a423c commit daa9a56Copy full SHA for daa9a56
core/src/main/java/org/testcontainers/utility/RyukResourceReaper.java
@@ -77,19 +77,6 @@ private synchronized void maybeStart() {
77
78
ryukContainer.start();
79
80
- Runtime
81
- .getRuntime()
82
- .addShutdownHook(
83
- new Thread(
84
- DockerClientFactory.TESTCONTAINERS_THREAD_GROUP,
85
- () -> {
86
- this.dockerClient.killContainerCmd(this.ryukContainer.getContainerId())
87
- .withSignal("SIGTERM")
88
- .exec();
89
- }
90
- )
91
- );
92
-
93
CountDownLatch ryukScheduledLatch = new CountDownLatch(1);
94
95
String host = ryukContainer.getHost();
0 commit comments