We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a15277 commit 4bafd14Copy full SHA for 4bafd14
README.md
@@ -102,7 +102,7 @@ In your application, e.g.
102
103
DockerClientConfig config = DockerClientConfig.createDefaultConfigBuilder()
104
.withDockerHost("tcp://my-docker-host.tld:2376")
105
- .withDockerTlsVerify("1")
+ .withDockerTlsVerify(true)
106
.withDockerCertPath("/home/user/.docker/certs")
107
.withDockerConfig("/home/user/.docker")
108
.withApiVersion("1.21")
@@ -113,7 +113,7 @@ In your application, e.g.
113
.build();
114
DockerClient docker = DockerClientBuilder.getInstance(config).build();
115
116
-#### Properties
+#### Properties (docker-java.properties)
117
118
DOCKER_HOST=tcp://localhost:2376
119
DOCKER_TLS_VERIFY=1
0 commit comments