com.github.jazzschmidt.gradle-docker-plugin
Owner:
Carsten Schmidt
Simple Docker plugin
https://github.com/jazzschmidt/gradle-docker-plugin
Sources: https://github.com/jazzschmidt/gradle-docker-plugin
Version 1.0.1 (latest)
Created 19 August 2021.
Simple to use Gradle Plugin to build, tag and push Docker Images.
Supports Multi-Module-Projects, build caching, Java 8 and runs on Gradle 6+
and 7.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.jazzschmidt.gradle-docker-plugin") version "1.0.1"
}
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("com.github.jazzschmidt.gradle-docker-plugin:com.github.jazzschmidt.gradle-docker-plugin.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.jazzschmidt.gradle-docker-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.jazzschmidt.gradle-docker-plugin:com.github.jazzschmidt.gradle-docker-plugin.gradle.plugin:1.0.1") } } apply(plugin = "com.github.jazzschmidt.gradle-docker-plugin")
- Applying plugins to all subprojects .