You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+42-1Lines changed: 42 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,34 @@ Change Log
5
5
---
6
6
Notes
7
7
8
-
* The upcoming release will contain multiple API breaking changes therefore the major version switch. It will support a subset of v.1.21 of the docker remote API. It also includes an experimental netty based implementation of `DockerCmdExecFactory` that probably will replace the current jersey/httpclient based one in a later release.
8
+
* The upcoming release will contain multiple API breaking changes therefore the major version switch. It will support a subset of v.1.22 of the docker remote API. It also includes an experimental netty based implementation of `DockerCmdExecFactory` that probably will replace the current jersey/httpclient based one in a later release.
9
9
* The configuration has been changed to better match the docker CLI configuration options. The properties file was renamed from `docker.io.properties` to `docker-java.properties`. See README.md for details.
10
10
11
11
All changes
12
+
13
+
Included in 3.0.0-RC5
14
+
15
+
*[#542] (https://github.com/docker-java/docker-java/pull/542) Fix large volumes of output from "docker exec" trigger out of memory error
16
+
*[#541] (https://github.com/docker-java/docker-java/pull/541) ImageInspectResponse.GraphDriver.Data is more complex structure
17
+
*[#534] (https://github.com/docker-java/docker-java/pull/534) Fix create volume command doesn't assign passed in volume driverOpts to field
Copy file name to clipboardExpand all lines: README.md
+9-7Lines changed: 9 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,6 @@
4
4
5
5
Java API client for [Docker](http://docs.docker.io/"Docker")
6
6
7
-
Supports a subset of the Docker Remote API [v1.19](https://github.com/docker/docker/blob/master/docs/reference/api/docker_remote_api_v1.19.md), Docker Server version 1.7.x
8
-
9
7
<b>The current implementation is based on Jersey 2.x and therefore classpath incompatible with older Jersey 1.x dependent libraries!</b>
10
8
11
9
Developer forum for [docker-java](https://groups.google.com/forum/?#!forum/docker-java-dev"docker-java")
@@ -16,7 +14,6 @@ Developer forum for [docker-java](https://groups.google.com/forum/?#!forum/docke
16
14
17
15
* Java 1.7
18
16
* Maven 3.0.5
19
-
* Docker 1.7.x
20
17
21
18
If you need SSL, then you'll need to put your `*.pem` file into `~/.docker/`, if you're using boot2docker, do this:
22
19
@@ -36,9 +33,10 @@ listening on TCP port. To allow Docker server to use TCP add the following line
However you can force docker-java to use UNIX socket communication by configuring the following url:
36
+
However you can force docker-java to use UNIX socket communication by configure the following (see [Configuration](.#Configuration) for details):
40
37
41
-
unix:///var/run/docker.sock
38
+
DOCKER_HOST=unix:///var/run/docker.sock
39
+
DOCKER_TLS_VERIFY=0
42
40
43
41
More details about setting up Docker server can be found in official documentation: http://docs.docker.io/en/latest/use/basics/
44
42
@@ -60,22 +58,26 @@ Run build without integration tests:
60
58
## Docker-Java maven dependencies
61
59
62
60
### Latest release version
61
+
Supports a subset of the Docker Remote API [v1.19](https://github.com/docker/docker/blob/master/docs/reference/api/docker_remote_api_v1.19.md), Docker Server version 1.7.x
63
62
64
63
<dependency>
65
64
<groupId>com.github.docker-java</groupId>
66
65
<artifactId>docker-java</artifactId>
67
-
<version>2.2.0</version>
66
+
<version>2.2.3</version>
68
67
</dependency>
69
68
70
69
### Latest release candidate
70
+
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
71
71
72
72
<dependency>
73
73
<groupId>com.github.docker-java</groupId>
74
74
<artifactId>docker-java</artifactId>
75
-
<version>3.0.0-RC1</version>
75
+
<version>3.0.0-RC5</version>
76
76
</dependency>
77
77
78
78
### Latest development version
79
+
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
80
+
79
81
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/).
0 commit comments