搜索 Gradle 插件

版本 2.5(最新版)

2.5

创建于 2023 年 11 月 13 日。

构建或推送 Docker 镜像。

使用 插件的 DSL

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

使用 遗留插件应用

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

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

使用 插件的 DSL

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

使用 遗留插件应用

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

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

学习如何将插件应用于子项目