Holger Steinhauer [Mod]
04/08/2020, 4:34 PMtasks {
val waitServer by creating {
group = "Docker"
description = "Spin-up fresh builds via Docker"
dependsOn (":reconciliation:dockerBuildImage")
dependsOn(composeUp)
}
}
So I would expect that ./gradlew waitServer
would call dockerBuildImage
on the reconciliation
module first and then run composeUp
. But it goes straight into composeUp
which fails because the docker image from the reconciliation
module isn’t built yet. Any ideas?araqnid
04/08/2020, 4:41 PMHolger Steinhauer [Mod]
04/08/2020, 4:45 PMHolger Steinhauer [Mod]
04/08/2020, 5:30 PMcomposeUp
did the trick. I will check with the colleagues why it works on the other repo anyways. But it really helped me out. Thanks again @araqnid!araqnid
04/08/2020, 5:39 PM