Skip to content

Commit de1611e

Browse files
committed
Update README.md
1 parent e022c44 commit de1611e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Java API client for [Docker](http://docs.docker.io/ "Docker")
55

6-
Supports a subset of the Docker Client API v1.15, Docker Server version 1.3.2
6+
Supports a subset of the Docker Client API v1.16, Docker Server version 1.4.1
77

88
<b>The current implementation is based on Jersey 2.x and therefore classpath incompatible with older Jersey 1.x dependent libraries!</b>
99

@@ -13,7 +13,7 @@ Developer forum for [docker-java](https://groups.google.com/forum/?hl=de#!forum/
1313

1414
###### Prerequisites:
1515

16-
* Java 1.6
16+
* Java 1.7
1717
* Maven 3.0.5
1818
* Docker daemon running
1919

@@ -81,7 +81,7 @@ For code examples, please look at the [Wiki](https://github.com/docker-java/dock
8181
There are a couple of configuration items, all of which have sensible defaults:
8282

8383
* `url` The Docker URL, e.g. `https://localhost:2376`.
84-
* `version` The API version, e.g. `1.15`.
84+
* `version` The API version, e.g. `1.16`.
8585
* `username` Your registry username (required to push containers).
8686
* `password` Your registry password.
8787
* `email` Your registry email.
@@ -94,7 +94,7 @@ There are three ways to configure, in descending order of precedence:
9494
In your application, e.g.
9595

9696
DockerClientConfig config = DockerClientConfig.createDefaultConfigBuilder()
97-
.withVersion("1.15")
97+
.withVersion("1.16")
9898
.withUri("https://my-docker-host.tld:2376")
9999
.withUsername("dockeruser")
100100
.withPassword("ilovedocker")
@@ -107,7 +107,7 @@ In your application, e.g.
107107
#### Properties
108108

109109
docker.io.url=https://localhost:2376
110-
docker.io.version=1.15
110+
docker.io.version=1.16
111111
docker.io.username=dockeruser
112112
docker.io.password=ilovedocker
113113
docker.io.email=dockeruser@github.com

0 commit comments

Comments
 (0)