Search Gradle plugins

com.liferay.app.docker

Owner: Liferay

The App Docker Gradle plugin lets you build a single Docker image for an application that spans different subprojects, each one representing a different component of the same application. The Docker image can then be pushed to a registry.

https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-app-docker

Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-app-docker

Version 1.0.10

Created 19 November 2019.

The App Docker Gradle plugin lets you build a single Docker image for an application that spans different subprojects, each one representing a different component of the same application. The Docker image can then be pushed to a registry.

Using the plugins DSL:

plugins {
  id("com.liferay.app.docker") version "1.0.10"
}

Using legacy plugin application:

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

apply(plugin = "com.liferay.app.docker")

Using the plugins DSL:

plugins {
  id "com.liferay.app.docker" version "1.0.10"
}

Using legacy plugin application:

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

apply plugin: "com.liferay.app.docker"

Learn how to apply plugins to subprojects