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-10-06T22-59-00

2016-10-06T22-59-00

Created 06 October 2016.

A Docker plugin for Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.gesellix.docker") version "2016-10-06T22-59-00"
}

See also:

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