Update launch script integration tests to work with Docker 1.12

Closes gh-6914 (I hope)
This commit is contained in:
Andy Wilkinson
2016-09-18 22:09:35 +01:00
parent 04b261984e
commit 5a539ce381
2 changed files with 5 additions and 4 deletions

View File

@@ -233,7 +233,7 @@ public class SysVinitLaunchScriptIT {
private DockerClient createClient() {
DockerClientConfig config = DockerClientConfig.createDefaultConfigBuilder()
.build();
.withVersion("1.19").build();
DockerClient docker = DockerClientBuilder.getInstance(config)
.withDockerCmdExecFactory(this.commandExecFactory).build();
return docker;