Skip to content

Commit 4bafd14

Browse files
author
Marcus Linke
committed
Fix README.md
1 parent 3a15277 commit 4bafd14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ In your application, e.g.
102102

103103
DockerClientConfig config = DockerClientConfig.createDefaultConfigBuilder()
104104
.withDockerHost("tcp://my-docker-host.tld:2376")
105-
.withDockerTlsVerify("1")
105+
.withDockerTlsVerify(true)
106106
.withDockerCertPath("/home/user/.docker/certs")
107107
.withDockerConfig("/home/user/.docker")
108108
.withApiVersion("1.21")
@@ -113,7 +113,7 @@ In your application, e.g.
113113
.build();
114114
DockerClient docker = DockerClientBuilder.getInstance(config).build();
115115

116-
#### Properties
116+
#### Properties (docker-java.properties)
117117

118118
DOCKER_HOST=tcp://localhost:2376
119119
DOCKER_TLS_VERIFY=1

0 commit comments

Comments
 (0)