Skip to content

Commit

Permalink
Upgraded Docker Compose Gradle plugin to support homebrew installation
Browse files Browse the repository at this point in the history
  • Loading branch information
cer committed Jul 3, 2023
1 parent 42f3489 commit 25f0e63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
classpath "io.eventuate.plugins.gradle:eventuate-plugins-gradle-publish:$eventuatePluginsGradleVersion"
classpath "com.avast.gradle:gradle-docker-compose-plugin:0.13.2"
classpath "com.avast.gradle:gradle-docker-compose-plugin:$dockerComposePluginVersion"
}
}

Expand Down Expand Up @@ -62,6 +62,6 @@ dockerCompose {
publish {
projectName = null
useComposeFiles = ["docker-compose.yml"]
removeContainers = project.ext.removeContainers
removeContainers = project.ext.removeContainers.toBoolean()
}
}
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

deployUrl=file:///Users/cer/.m2/testdeploy
dockerComposePluginVersion=0.16.12

dockerImageTag=latest
removeContainers=false
Expand Down

0 comments on commit 25f0e63

Please sign in to comment.