Skip to content

Commit b87e0d6

Browse files
authored
Fixed a bad implimentation reference
DockerClientConfig is an interface and does not have a method called: DockerClientConfig.createDefaultConfigBuilder().
1 parent c2e4f2c commit b87e0d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ There are three ways to configure, in descending order of precedence:
9393
#### Programmatic:
9494
In your application, e.g.
9595

96-
DockerClientConfig config = DockerClientConfig.createDefaultConfigBuilder()
96+
DockerClientConfig config = DefaultDockerClientConfig.createDefaultConfigBuilder()
9797
.withDockerHost("tcp://my-docker-host.tld:2376")
9898
.withDockerTlsVerify(true)
9999
.withDockerCertPath("/home/user/.docker/certs")

0 commit comments

Comments
 (0)