Search Gradle plugins

Version 1.3.1 (latest)

1.3.1

Created 18 February 2024.

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.3.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.implab.gradle:container:1.3.1")
      }
    }
    
    apply(plugin = "org.implab.gradle-container-compose")
  • Applying plugins to all subprojects .