1

Add docker support

This commit is contained in:
2018-05-27 20:06:09 +03:00
parent 61db0a3869
commit 4e87b07d38
18 changed files with 234 additions and 84 deletions

View File

@@ -4,14 +4,15 @@ buildscript {
}
dependencies {
classpath "io.ratpack:ratpack-gradle:1.5.1"
classpath 'se.transmode.gradle:gradle-docker:1.2'
}
}
plugins {
id 'idea'
id 'groovy'
id "io.ratpack.ratpack-groovy" version "1.5.1"
id "org.flywaydb.flyway" version "5.0.7"
id "io.ratpack.ratpack-groovy" version "1.5.1" apply false
id "org.flywaydb.flyway" version "5.0.7" apply false
}
allprojects {
@@ -21,3 +22,7 @@ allprojects {
jcenter()
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.7'
}