io.github.joleksiysurovtsev.gradle-dev-containers-starter
Owner: Oleksii Surovtsev
A Gradle plugin to automate the deployment of Kafka and Zookeeper containers using Docker. It handles container creation, initialization, and network setup. With each new version, new containers and tasks will be added
https://github.com/joleksiysurovtsev/GradleDevContainers
Sources: https://github.com/joleksiysurovtsev/GradleDevContainers
Version 0.0.1 (latest)
0.0.1
Created 05 September 2023.
A Gradle plugin to automate the deployment of Kafka and Zookeeper containers using Docker.
It handles container creation, initialization, and network setup.
With each new version, new containers and tasks will be added
Using the plugins DSL:
plugins {
id("io.github.joleksiysurovtsev.gradle-dev-containers-starter") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.joleksiysurovtsev:plugin:0.0.1")
}
}
apply(plugin = "io.github.joleksiysurovtsev.gradle-dev-containers-starter")
Using the plugins DSL:
plugins {
id "io.github.joleksiysurovtsev.gradle-dev-containers-starter" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.joleksiysurovtsev:plugin:0.0.1"
}
}
apply plugin: "io.github.joleksiysurovtsev.gradle-dev-containers-starter"