com.palantir.docker-compose
Owner: Palantir Technologies
Gradle Docker is a simple docker orchestrator for executing docker build and push from within Gradle.
https://github.com/palantir/gradle-docker
Sources: https://github.com/palantir/gradle-docker
Version 0.36.0 (latest)
Created 02 March 2024.
Gradle Docker is a simple docker orchestrator for executing docker build and push from within Gradle.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.palantir.docker-compose") version "0.36.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("com.palantir.docker-compose:com.palantir.docker-compose.gradle.plugin:0.36.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.palantir.docker-compose") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.palantir.docker-compose:com.palantir.docker-compose.gradle.plugin:0.36.0") } } apply(plugin = "com.palantir.docker-compose")
- Applying plugins to all subprojects .