We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a730b44 commit 6a696f4Copy full SHA for 6a696f4
distribution/docker/build.gradle
@@ -142,4 +142,6 @@ assemble.dependsOn "buildDockerImage"
142
// We build the images used in compose locally, but the pull command insists on using a repository
143
// thus we must disable it to prevent it from doing so.
144
// Everything will still be pulled since we will build the local images on a pull
145
-tasks.matching { name == "composePull" }.all { enabled = false }
+if (tasks.findByName("composePull")) {
146
+ tasks.composePull.enabled = false
147
+}
0 commit comments