Com.palantir.docker: Difference between revisions
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
=External= | |||
* https://github.com/palantir/gradle-docker | |||
=Internal= | =Internal= | ||
Revision as of 08:18, 6 February 2019
External
Internal
Overview
Latest Version
Example
buildscript {
ext {
...
dockerGradleVersion = '0.20.1'
}
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
...
classpath("gradle.plugin.com.palantir.gradle.docker:gradle-docker:${dockerGradleVersion}")
}
}
...
apply plugin: 'com.palantir.docker'
...
group = 'playground.example'
...
docker {
dependsOn build
name "${project.group}/${bootJar.baseName}"
files bootJar.archivePath
buildArgs(['JAR_FILE': "${bootJar.archiveName}"])
}