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.8 (latest)

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

Add this plugin to your build using the plugins DSL:

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

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