Search Gradle plugins

xyz.ronella.simple-docker

The plugin that allows you access to docker commands inside gradle as task

https://github.com/rcw3bb/simple-docker

Sources: https://github.com/rcw3bb/simple-docker

Version 1.0.0

Created 16 February 2024.

The plugin that allows you access to docker commands inside gradle as task

Add this plugin to your build using the plugins DSL:

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