Search Gradle plugins

de.gesellix.docker

A Docker plugin for Gradle. Details and usage can be found on the project website or the example project at https://github.com/gesellix-docker/gradle-docker-plugin-example.

https://github.com/gesellix/gradle-docker-plugin

Version 2016-06-23T21-39-11

2016-06-23T21-39-11

Created 23 June 2016.

A Docker plugin for Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.gesellix.docker") version "2016-06-23T21-39-11"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.gesellix:gradle-docker-plugin:2016-06-23T21-39-11")
      }
    }
    
    apply(plugin = "de.gesellix.docker")
  • Applying plugins to all subprojects .