Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Updating release to 1.0.18 with new 'composeServiceVersionTask' setting
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtkopchik committed Sep 8, 2017
1 parent 7587444 commit a884c16
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Steps to Enable and Configure sbt-docker-compose

1) Add the sbt-docker-compose plugin to your projects plugins.sbt file:
```
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.27")
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
```
sbt-docker-compose is an auto-plugin which requires that sbt version 0.13.5+ or sbt version 1.0.0+ be used.

Expand Down Expand Up @@ -58,7 +58,7 @@ plugin will attempt to locate it in one of three places with the precedence orde
```
composeFile := // Specify the full path to the Compose File to use to create your test instance. It defaults to docker-compose.yml in your resources folder.
composeServiceName := // Specify the name of the service in the Docker Compose file being tested. This setting prevents the service image from being pull down from the Docker Registry. It defaults to the sbt Project name.
composeServiceVersionTask := The version to tag locally built images with in the docker-compose file. This defaults to the 'version' SettingKey.
composeServiceVersionTask := // The version to tag locally built images with in the docker-compose file. This defaults to the 'version' SettingKey.
composeNoBuild := // True if a Docker Compose file is to be started without building any images and only using ones that already exist in the Docker Registry. This defaults to False.
composeRemoveContainersOnShutdown := // True if a Docker Compose should remove containers when shutting down the compose instance. This defaults to True.
composeRemoveNetworkOnShutdown := // True if a Docker Compose should remove the network it created when shutting down the compose instance. This defaults to True.
Expand Down
2 changes: 1 addition & 1 deletion examples/basic-native-packager/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.typesafe.sbt" %% "sbt-native-packager" % "1.1.0")

addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.27")
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
2 changes: 1 addition & 1 deletion examples/basic-variable-substitution/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("com.typesafe.sbt" %% "sbt-native-packager" % "1.1.0")

addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.27")
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
2 changes: 1 addition & 1 deletion examples/basic-with-tests-integration/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")

addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.27")
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
2 changes: 1 addition & 1 deletion examples/basic-with-tests-specs2/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")

addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.27")
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
2 changes: 1 addition & 1 deletion examples/basic-with-tests/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")

addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.27")
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
2 changes: 1 addition & 1 deletion examples/multi-project/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.4.1")

addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.27")
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
2 changes: 1 addition & 1 deletion examples/no-build/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.27")
addSbtPlugin("com.tapad" % "sbt-docker-compose" % "1.0.28")
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "1.0.28-SNAPSHOT"
version in ThisBuild := "1.0.28"

0 comments on commit a884c16

Please sign in to comment.