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-01-02T19-13-05

Created 02 January 2017.

A Docker plugin for Gradle

Using the plugins DSL:

plugins {
  id("de.gesellix.docker") version "2017-01-02T19-13-05"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.gesellix:gradle-docker-plugin:2017-01-02T19-13-05")
  }
}

apply(plugin = "de.gesellix.docker")

Using the plugins DSL:

plugins {
  id "de.gesellix.docker" version "2017-01-02T19-13-05"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.gesellix:gradle-docker-plugin:2017-01-02T19-13-05"
  }
}

apply plugin: "de.gesellix.docker"

Learn how to apply plugins to subprojects