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

Version 1.0.36 (latest)

1.0.36

Created 16 July 2021.

Docker and K8S pluging. Others will be available soon!

Add this plugin to your build using the plugins DSL:

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

See also:

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