Skip to content

Instantly share code, notes, and snippets.

@oliv-yu
Created February 21, 2019 01:19
Show Gist options
  • Save oliv-yu/f0ff32bf7317c88e402c6b8dcecefe6d to your computer and use it in GitHub Desktop.
Save oliv-yu/f0ff32bf7317c88e402c6b8dcecefe6d to your computer and use it in GitHub Desktop.
Edit your build.gradle up
task up(type:Exec) {
group "WWW"
description "Sets up and starts all docker instances for project"
dependsOn 'deployLocal'
commandLine "docker-compose", "-f", "${localDockerComposeFile}", "up", "-d"
doFirst {
println "begin up"
}
doLast {
println "end up"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment