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
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,45 @@
1
1
# Changelog
2
2
3
+
## Version 1.2 (2014-07-28)
4
+
5
+
#### Docker Remote API
6
+
It is now possible to use the Docker Remote API instead of the `docker` command line tool. See the [docs](README.md#docker-remote-api) for more information (PR #10). This is particularly useful for users who do not have Docker installed locally.
7
+
8
+
#### addFile
9
+
* Fixed `addFile` accepting a copySpec as an argument (issue #4).
10
+
*`addFile` now accepts the destination path as an optional second argument (default: `/`)
11
+
12
+
#### Base image
13
+
* Fixed setting of a custom base image both through the plugin extension or a task property (issue #11).
14
+
* Fixed default base image detection based on project's `targetCompatibility`.
15
+
* Added default base image for Java 8 (PR #9).
16
+
17
+
#### External Dockerfile
18
+
* Supply an external Dockerfile instead of defining it in the build script. See the [docs](README.md#building-your-dockerfile) (issue #13).
19
+
* Mix and match loading external Dockerfiles and extending in the build script.
20
+
21
+
#### Gradle 2.0
22
+
The plugin is now compatible with Gradle 2.0 (see the [docs](README.md#note-to-gradle-1.x-users) if you are using Gradle 1.x)
23
+
24
+
#### Image tagging
25
+
* Possible to set docker image tag version to something else than *:latest* (PR #5).
26
+
* Fixed setting of the image tag name and version (issue #15).
27
+
28
+
Many thanks to the contributors
29
+
30
+
*[@aglover](https://github.com/aglover)
31
+
*[@Teudimundo](https://github.com/Teudimundo)
32
+
*[@sfitts](https://github.com/sfitts)
33
+
*[@frvi](https://github.com/frvi)
34
+
*[@mattgruter](https://github.com/mattgruter)
35
+
36
+
3
37
## Version 1.1.1 (2014-06-13)
4
38
* Possible to build without specifying group.
5
39
* Failing gradle build if Docker execution fails.
6
40
7
41
Many thanks to the contributors:
42
+
8
43
*[@Teudimundo](https://github.com/Teudimundo)
9
44
*[@frvi](https://github.com/frvi)
10
45
@@ -20,6 +55,7 @@ Many thanks to the contributors:
20
55
* Fixed path seperator bug for integration testing on Windows.
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@
4
4
5
5
This plugin for [Gradle](http://www.gradle.org/) adds the capability to build und publish [Docker](http://docker.io/) images from the build script.
6
6
7
+
See the [change log](CHANGELOG.md) for information about the latest changes.
8
+
7
9
## Extending the application plugin
8
10
The gradle-docker plugin adds a task `distDocker` if the project already has the [application plugin](http://www.gradle.org/docs/current/userguide/application_plugin.html) applied:
0 commit comments