File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,15 @@ You will need an instance of `DockerClientConfig` to tell the library how to acc
1616
1717The builder is available and allows you to configure every property of the client:
1818``` java
19+ import com.github.dockerjava.core.DockerClientConfig
20+ import com.github.dockerjava.core.DefaultDockerClientConfig
1921DockerClientConfig standard = DefaultDockerClientConfig . createDefaultConfigBuilder(). build();
2022```
2123
2224``` java
25+ import com.github.dockerjava.core.DockerClientConfig
26+ import com.github.dockerjava.core.DefaultDockerClientConfig
27+
2328DockerClientConfig custom = DefaultDockerClientConfig . createDefaultConfigBuilder()
2429 .withDockerHost(" tcp://docker.somewhere.tld:2376" )
2530 .withDockerTlsVerify(true )
You can’t perform that action at this time.
0 commit comments