ch.fuzzle.gradle.docker-plugin
Owner: Andreas Lingenhag
This plugin adds tasks to build a docker image for the given project.
https://github.com/f-u-z-z-l-e/gradle-docker-plugin
Sources: https://github.com/f-u-z-z-l-e/gradle-docker-plugin
Version 0.1.3 (latest)
Created 26 December 2019.
This plugin adds tasks to build a docker image for the given project.
Add this plugin to your build using the plugins DSL:
plugins {
id("ch.fuzzle.gradle.docker-plugin") version "0.1.3"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("ch.fuzzle.gradle.docker-plugin:ch.fuzzle.gradle.docker-plugin.gradle.plugin:0.1.3") }
It can then be applied in the precompiled script plugin:plugins { id("ch.fuzzle.gradle.docker-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.fuzzle.gradle.docker-plugin:ch.fuzzle.gradle.docker-plugin.gradle.plugin:0.1.3") } } apply(plugin = "ch.fuzzle.gradle.docker-plugin")
- Applying plugins to all subprojects .