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)

0.5.0

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.

Using the plugins DSL:

plugins {
  id("com.fussionlabs.gradle.docker-plugin") version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.fussionlabs.gradle:docker-plugin:0.5.0")
  }
}

apply(plugin = "com.fussionlabs.gradle.docker-plugin")

Using the plugins DSL:

plugins {
  id "com.fussionlabs.gradle.docker-plugin" version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.fussionlabs.gradle:docker-plugin:0.5.0"
  }
}

apply plugin: "com.fussionlabs.gradle.docker-plugin"

Learn how to apply plugins to subprojects