Skip to content

Commit fa3310d

Browse files
authored
Update for release
1 parent 4bd03a7 commit fa3310d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Developer forum for [docker-java](https://groups.google.com/forum/?#!forum/docke
2121

2222
###### Prerequisites:
2323

24-
* Java 1.7
25-
* Maven 3.0.5
24+
* Java min 1.7
25+
* Maven 3
2626

2727
Build and run integration tests as follows:
2828

@@ -47,26 +47,26 @@ For secure tls (https) communication:
4747

4848
DOCKER_HOST=tcp://127.0.0.1:2376
4949
DOCKER_TLS_VERIFY=1
50-
DOCKER_CERT_PATH=/Users/marcus/.docker/machine/machines/docker-1.10.2
50+
DOCKER_CERT_PATH=/Users/marcus/.docker/machine/machines/docker-1.11.2
5151

5252
### Latest release version
53-
Supports a subset of the Docker Remote API [v1.22](https://github.com/docker/docker/blob/master/docs/reference/api/docker_remote_api_v1.22.md), Docker Server version 1.10.x
53+
Supports a subset of the Docker Remote API [v1.23](https://github.com/docker/docker/blob/master/docs/reference/api/docker_remote_api_v1.23.md), Docker Server version 1.11.x
5454

5555
<dependency>
5656
<groupId>com.github.docker-java</groupId>
5757
<artifactId>docker-java</artifactId>
58-
<version>3.0.0</version>
58+
<version>3.0.1</version>
5959
</dependency>
6060

6161
### Latest development version
62-
Supports a subset of the Docker Remote API [v1.22](https://github.com/docker/docker/blob/master/docs/reference/api/docker_remote_api_v1.22.md), Docker Server version 1.10.x
62+
Supports a subset of the Docker Remote API [v1.23](https://github.com/docker/docker/blob/master/docs/reference/api/docker_remote_api_v1.23.md), Docker Server version 1.11.x
6363

6464
You can find the latest development version including javadoc and source files on [Sonatypes OSS repository](https://oss.sonatype.org/content/groups/public/com/github/docker-java/docker-java/).
6565

6666
<dependency>
6767
<groupId>com.github.docker-java</groupId>
6868
<artifactId>docker-java</artifactId>
69-
<version>3.0.1-SNAPSHOT</version>
69+
<version>3.0.2-SNAPSHOT</version>
7070
</dependency>
7171

7272

@@ -82,7 +82,7 @@ There are a couple of configuration items, all of which have sensible defaults:
8282
* `DOCKER_TLS_VERIFY` enable/disable TLS verification (switch between `http` and `https` protocol)
8383
* `DOCKER_CERT_PATH` Path to the certificates needed for TLS verification
8484
* `DOCKER_CONFIG` Path for additional docker configuration files (like `.dockercfg`)
85-
* `api.version` The API version, e.g. `1.21`.
85+
* `api.version` The API version, e.g. `1.23`.
8686
* `registry.url` Your registry's address.
8787
* `registry.username` Your registry username (required to push containers).
8888
* `registry.password` Your registry password.
@@ -98,7 +98,7 @@ In your application, e.g.
9898
.withDockerTlsVerify(true)
9999
.withDockerCertPath("/home/user/.docker/certs")
100100
.withDockerConfig("/home/user/.docker")
101-
.withApiVersion("1.21")
101+
.withApiVersion("1.23")
102102
.withRegistryUrl("https://index.docker.io/v1/")
103103
.withRegistryUsername("dockeruser")
104104
.withRegistryPassword("ilovedocker")
@@ -112,7 +112,7 @@ In your application, e.g.
112112
DOCKER_TLS_VERIFY=1
113113
DOCKER_CERT_PATH=/home/user/.docker/certs
114114
DOCKER_CONFIG=/home/user/.docker
115-
api.version=1.21
115+
api.version=1.23
116116
registry.url=https://index.docker.io/v1/
117117
registry.username=dockeruser
118118
registry.password=ilovedocker

0 commit comments

Comments
 (0)