com.chrisgahlert.gradle-dcompose-plugin
Owner: Christian Gahlert
Plugin for automatically managing Docker container lifecycles in Gradle. This plugin was inspired by the gradle-docker-plugin from Benjamin Muschko and by docker-compose
http://github.com/chrisgahlert/gradle-dcompose-plugin
Sources: http://github.com/chrisgahlert/gradle-dcompose-plugin
Version 0.17.2 (latest)
Created 18 February 2021.
Plugin for automatically managing Docker container lifecycles in Gradle. This plugin was inspired by the gradle-docker-plugin from Benjamin Muschko and by docker-compose
Add this plugin to your build using the plugins DSL:
plugins {
id("com.chrisgahlert.gradle-dcompose-plugin") version "0.17.2"
}
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.chrisgahlert.gradle-dcompose-plugin:com.chrisgahlert.gradle-dcompose-plugin.gradle.plugin:0.17.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.chrisgahlert.gradle-dcompose-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.chrisgahlert.gradle-dcompose-plugin:com.chrisgahlert.gradle-dcompose-plugin.gradle.plugin:0.17.2") } } apply(plugin = "com.chrisgahlert.gradle-dcompose-plugin")
- Applying plugins to all subprojects .