com.brightsparklabs.gradle.docker-image
Owner: Al Jeyapal
Simplifies working with Docker images
https://github.com/brightsparklabs/gradle-docker
Sources: scm:git@github.com:brightsparklabs/gradle-docker.git
Version 3.0.0 (latest)
3.0.0
Created 02 November 2023.
Simplifies working with Docker images
Using the plugins DSL:
plugins {
id("com.brightsparklabs.gradle.docker-image") version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.brightsparklabs:gradle-docker:3.0.0")
}
}
apply(plugin = "com.brightsparklabs.gradle.docker-image")
Using the plugins DSL:
plugins {
id "com.brightsparklabs.gradle.docker-image" version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.brightsparklabs:gradle-docker:3.0.0"
}
}
apply plugin: "com.brightsparklabs.gradle.docker-image"