Search Gradle plugins

Version 2.1

Created 26 July 2023.

构建,推送docker镜像(build or push docker Image).

Using the plugins DSL:

plugins {
  id("io.github.godfather1103.docker-plugin") version "2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.godfather1103:docker-plugin:2.1")
  }
}

apply(plugin = "io.github.godfather1103.docker-plugin")

Using the plugins DSL:

plugins {
  id "io.github.godfather1103.docker-plugin" version "2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.godfather1103:docker-plugin:2.1"
  }
}

apply plugin: "io.github.godfather1103.docker-plugin"

Learn how to apply plugins to subprojects