Search Gradle plugins

Version 2.5 (latest)

Created 13 November 2023.

build or push docker Image.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects