io.github.godfather1103.docker-plugin
Owner:
Jack Chu
build or push docker Image.
https://github.com/godfather1103
Version 1.2.4 (latest)
Created 29 March 2023.
构建,推送docker镜像(build or push docker Image).
Using the plugins DSL:
plugins {
id("io.github.godfather1103.docker-plugin") version "1.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.godfather1103:docker-plugin:1.2.4")
}
}
apply(plugin = "io.github.godfather1103.docker-plugin")
Using the plugins DSL:
plugins {
id "io.github.godfather1103.docker-plugin" version "1.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.godfather1103:docker-plugin:1.2.4"
}
}
apply plugin: "io.github.godfather1103.docker-plugin"