Search Gradle plugins

docker.plugin

Docker and K8S pluging. Others will be available soon!

http://shahinnazarov.com/gradle-plugins

Sources: https://github.com/username/repo

Add this plugin to your build using the plugins DSL:

plugins {
  id("docker.plugin") version "1.0.13"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.shainnazarov:gradle-plugins:1.0.13")
      }
    }
    
    apply(plugin = "docker.plugin")
  • Applying plugins to all subprojects .