Search Gradle plugins

pub.techfun.docker.plugin.cmd

Owner: hulian

This plugin use local machine shell to execute docker command to complete common tasks like build docker image, push to local or remore registry, deploy to local or remote host

https://github.com/hulian/gradle-docker-plugin

Sources: https://github.com/hulian/gradle-docker-plugin

Version 0.0.5

Created 18 July 2022.

This plugin use local machine shell to execute docker command to complete common tasks like build docker image, push to local or remore registry, deploy to local or remote host

Using the plugins DSL:

plugins {
  id("pub.techfun.docker.plugin.cmd") version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("pub.techfun:gradle-docker-plugin-cmd:0.0.5")
  }
}

apply(plugin = "pub.techfun.docker.plugin.cmd")

Using the plugins DSL:

plugins {
  id "pub.techfun.docker.plugin.cmd" version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "pub.techfun:gradle-docker-plugin-cmd:0.0.5"
  }
}

apply plugin: "pub.techfun.docker.plugin.cmd"

Learn how to apply plugins to subprojects