Search Gradle plugins

Version 1.0.16 (latest)

1.0.16

Created 23 August 2024.

Opinionated way to build container images using jib

Add this plugin to your build using the plugins DSL:

plugins {
  id("co.elastic.docker-component") version "1.0.16"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("co.elastic.gradle:component-image:1.0.16")
      }
    }
    
    apply(plugin = "co.elastic.docker-component")
  • Applying plugins to all subprojects .