-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Description
hi .
I use the lastest code to test. but still can not generate file.and I found many test cases can not passed.
@Test(groups = "ignoreInCircleCi")
public void execCreateTest1() {
String containerName = "generated_" + new SecureRandom().nextInt();
CreateContainerResponse container = dockerClient.createContainerCmd("busybox").withCmd("top").withName(containerName).exec();
dockerClient.startContainerCmd(container.getId()).exec();
ExecCreateCmd execCreateCmd = dockerClient.execCreateCmd(container.getId());
execCreateCmd.withCmd("echo", "\"this\"", ">", "/home/testfile.txt");
String execCreateCmdId = execCreateCmd.exec().getId();
ExecStartCmd execStartCmd = dockerClient.execStartCmd(container.getId());
}
Reactions are currently unavailable