|
|
@@ -35,9 +35,9 @@ public class DockerImpl implements Docker {
|
|
|
DockerClientConfig config = DefaultDockerClientConfig.createDefaultConfigBuilder()
|
|
|
.withDockerHost("unix:///var/run/docker.sock")
|
|
|
.withDockerTlsVerify(false)
|
|
|
- //.withDockerCertPath("/home/user/.docker")
|
|
|
- //.withRegistryUsername(registryUser)
|
|
|
- //.withRegistryPassword(registryPass)
|
|
|
+ .withDockerCertPath(String.format("%s/.docker", System.getProperty("user.home")))
|
|
|
+ //.withRegistryUsername("username")
|
|
|
+ //.withRegistryPassword("password")
|
|
|
//.withRegistryEmail(registryMail)
|
|
|
//.withRegistryUrl(registryUrl)
|
|
|
.build();
|