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 0b67ecc commit d8dccf1Copy full SHA for d8dccf1
modules/k3s/src/main/java/org/testcontainers/k3s/K3sContainer.java
@@ -39,7 +39,7 @@ public K3sContainer(DockerImageName dockerImageName) {
39
withCreateContainerCmdModifier(it -> {
40
it.getHostConfig().withCgroupnsMode("host");
41
});
42
- // addFileSystemBind("/sys/fs/cgroup", "/sys/fs/cgroup", BindMode.READ_WRITE);
+ addFileSystemBind("/sys/fs/cgroup", "/sys/fs/cgroup", BindMode.READ_WRITE);
43
44
Map<String, String> tmpFsMapping = new HashMap<>();
45
tmpFsMapping.put("/run", "");
0 commit comments