Skip to content

Commit

Permalink
Added changelog, updated docs to version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgruter committed Apr 14, 2014
1 parent 042cbee commit a93ce4c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

## Version 1.1 (2014-04-11)
* Support for more Dockerfile commands:
- WORKDIR
- VOLUME
- ENV
* Add any raw Dockerfile command.
* Set path to docker binary per task or globally.
* Switched to official dockerfile/java base image as default.
* Fixed path seperator bug for integration testing on Windows.

Many thanks to the contributors:
* [@sfitts](https://github.com/sfitts)
* [@kernel164](https://github.com/kernel164)
* [@nicarlsson](https://github.com/nicarlsson)
* [@mattgruter](https://github.com/mattgruter)


## Version 1.0 (2013-12-16)
Initial public release
* Task type "Docker" to:
- create Dockerfiles
- build a Docker image from above Dockerfile
- push the Docker image to the privat or public index
* Convention task "distDocker" to build an image from the gradle applicationDistribution
* Plugin extension to apply configuration to all Docker tasks
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The following example builds a docker image for the popular reverse proxy nginx.
buildscript {
repositories { mavenCentral() }
dependencies {
classpath 'se.transmode.gradle:gradle-docker:1.0'
classpath 'se.transmode.gradle:gradle-docker:1.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'docker'
buildscript {
repositories { mavenCentral() }
dependencies {
classpath 'se.transmode.gradle:gradle-docker:1.0'
classpath 'se.transmode.gradle:gradle-docker:1.1'
}
}

Expand Down

0 comments on commit a93ce4c

Please sign in to comment.