org.implab.gradle-container-compose
Owner:
Sergey Smirnov
Build and publish container images with docker or podman. Simple wrapper around cli.
https://code.implab.org/implab/gradle-container-plugin
Sources: https://code.implab.org/implab/gradle-container-plugin
Version 1.2.0
Created 02 December 2023.
Build and publish container images with docker or podman. Simple wrapper around cli.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.implab.gradle-container-compose") version "1.2.0"
}
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("org.implab.gradle-container-compose:org.implab.gradle-container-compose.gradle.plugin:1.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.implab.gradle-container-compose") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.implab.gradle-container-compose:org.implab.gradle-container-compose.gradle.plugin:1.2.0") } } apply(plugin = "org.implab.gradle-container-compose")
- Applying plugins to all subprojects .