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.11 (latest)
0.11
Created 03 August 2022.
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.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.nigelgbanks:isle-docker-plugins:0.11")
}
}
apply(plugin = "com.github.nigelgbanks.IsleDocker")
Using the plugins DSL:
plugins {
id "com.github.nigelgbanks.IsleDocker" version "0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.nigelgbanks:isle-docker-plugins:0.11"
}
}
apply plugin: "com.github.nigelgbanks.IsleDocker"