final ContainerCreation createResponse2 = new ContainerCreation(containerId2);
when(docker.createContainer(any(ContainerConfig.class), any(String.class)))
.thenReturn(createResponse1);
final ImageInfo imageInfo = new ImageInfo();
when(docker.inspectImage(IMAGE)).thenReturn(imageInfo);
when(docker.inspectContainer(eq(containerId1))).thenReturn(RUNNING_RESPONSE);
final SettableFuture<ContainerExit> waitFuture1 = SettableFuture.create();