com.github.nigelgbanks.IsleDocker
Owner: Nigel Geoffrey Banks
Gradle plugin that supports building interdependent Docker images with Buildkit support for the Isle project.
https://github.com/Islandora-Devops/isle-gradle-docker-plugin
Sources: https://github.com/Islandora-Devops/isle-gradle-docker-plugin
Version 0.7
0.7
Created 09 July 2021.
Gradle plugin that supports building interdependent Docker images with Buildkit support for the Isle project.
Using the plugins DSL:
plugins {
id("com.github.nigelgbanks.IsleDocker") version "0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.nigelgbanks:isle-docker-plugins:0.7")
}
}
apply(plugin = "com.github.nigelgbanks.IsleDocker")
Using the plugins DSL:
plugins {
id "com.github.nigelgbanks.IsleDocker" version "0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.nigelgbanks:isle-docker-plugins:0.7"
}
}
apply plugin: "com.github.nigelgbanks.IsleDocker"