docker.plugin
Owner: Shahin Nazarov
Docker and K8S pluging. Others will be available soon!
http://shahinnazarov.com/gradle-plugins
Sources: https://github.com/username/repo
Version 1.0.32
1.0.32
Created 14 July 2020.
Docker and K8S pluging. Others will be available soon!
Using the plugins DSL:
plugins {
id("docker.plugin") version "1.0.32"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.shainnazarov:gradle-plugins:1.0.32")
}
}
apply(plugin = "docker.plugin")
Using the plugins DSL:
plugins {
id "docker.plugin" version "1.0.32"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.shainnazarov:gradle-plugins:1.0.32"
}
}
apply plugin: "docker.plugin"