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 2018-01-26T22-56-30

2018-01-26T22-56-30

Created 26 January 2018.

A Docker plugin for Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.gesellix.docker") version "2018-01-26T22-56-30"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.gesellix:gradle-docker-plugin:2018-01-26T22-56-30")
      }
    }
    
    apply(plugin = "de.gesellix.docker")
  • Applying plugins to all subprojects .