Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. task up(type:Exec) {
  2. group "WWW"
  3. description "Sets up and starts all docker instances for project"
  4. dependsOn 'deployLocal'
  5. commandLine "docker-compose", "-f", "${localDockerComposeFile}", "up", "-d"
  6. doFirst {
  7. println "begin up"
  8. }
  9. doLast {
  10. println "end up"
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement