Skip to content

Commit f6f9d67

Browse files
aryeheddumelendez
andauthored
Improve getting_started.md (#1966)
Co-authored-by: Eddú Meléndez Gonzales <eddu.melendez@gmail.com>
1 parent d7db365 commit f6f9d67

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docs/getting_started.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@ You will need an instance of `DockerClientConfig` to tell the library how to acc
1616

1717
The 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
1921
DockerClientConfig standard = DefaultDockerClientConfig.createDefaultConfigBuilder().build();
2022
```
2123

2224
```java
25+
import com.github.dockerjava.core.DockerClientConfig
26+
import com.github.dockerjava.core.DefaultDockerClientConfig
27+
2328
DockerClientConfig custom = DefaultDockerClientConfig.createDefaultConfigBuilder()
2429
.withDockerHost("tcp://docker.somewhere.tld:2376")
2530
.withDockerTlsVerify(true)

0 commit comments

Comments
 (0)