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 2017-04-02T12-36-58

2017-04-02T12-36-58

Created 02 April 2017.

A Docker plugin for Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.gesellix.docker") version "2017-04-02T12-36-58"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.gesellix:gradle-docker-plugin:2017-04-02T12-36-58")
      }
    }
    
    apply(plugin = "de.gesellix.docker")
  • Applying plugins to all subprojects .