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 82d4e5a commit 86f672aCopy full SHA for 86f672a
src/reaper.ts
@@ -5,7 +5,6 @@ import { StartedTestContainer } from "./test-container";
5
import { Wait } from "./wait";
6
import { Id } from "./container";
7
import { DockerClient } from "./docker-client";
8
-import { Duration, TemporalUnit } from "node-duration";
9
10
export class Reaper {
11
public static IMAGE_NAME = "testcontainers/ryuk";
@@ -35,6 +34,7 @@ export class Reaper {
35
34
.withBindMount(dockerClient.getSocketPath(), "/var/run/docker.sock")
36
.withWaitStrategy(Wait.forLogMessage("Starting on port 8080"))
37
.withDaemonMode()
+ .withPrivilegedMode()
38
.start();
39
40
const host = container.getContainerIpAddress();
0 commit comments