Search Gradle plugins

com.fussionlabs.gradle.docker-plugin

The `docker-plugin` is a Gradle plugin created to simplify the process of building and pushing Docker images. It calls the Docker CLI directly, supports multiplatform builds and provides the ability to define custom Docker tasks.

https://github.com/dm0275/docker-plugin

Sources: https://github.com/dm0275/docker-plugin.git

Version 0.5.0 (latest)

Created 25 September 2024.

The `docker-plugin` is a Gradle plugin created to simplify the process of building and pushing Docker images. It calls the Docker CLI directly, supports multiplatform builds and provides the ability to define custom Docker tasks.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.fussionlabs.gradle.docker-plugin") version "0.5.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.fussionlabs.gradle.docker-plugin:com.fussionlabs.gradle.docker-plugin.gradle.plugin:0.5.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.fussionlabs.gradle.docker-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.fussionlabs.gradle.docker-plugin:com.fussionlabs.gradle.docker-plugin.gradle.plugin:0.5.0")
      }
    }
    
    apply(plugin = "com.fussionlabs.gradle.docker-plugin")
  • Applying plugins to all subprojects .