gradle-docker-plugin icon indicating copy to clipboard operation
gradle-docker-plugin copied to clipboard

Gradle plugin for managing Docker images and containers.

Results 27 gradle-docker-plugin issues
Sort by recently updated
recently updated
newest added

Hi, First of all, thanks for outstanding plugin, guys. It would be great if I could delete multiple docker images with a single Gradle task. ### Expected Behavior Additional task...

enhancement

If using e.g. this task: ``` tasks.register('logContainer', DockerLogsContainer) { dependsOn startContainer targetContainerId tasks.startContainer.getContainerId() follow = true tailAll = true } ``` it does copy the content of "docker logs -f...

bug

This is an enhancement request. At the moment you can configure in the DockerExtension only one credential set: ``` pluginManager.withPlugin("com.bmuschko.docker-remote-api") { docker { registryCredentials { url = "https://${dockerRegistry}/v2/" username =...

enhancement

When running `dockerPushImage` or a custom task such as ``` task myDockerPush(type: DockerPushImage) { images = ["test/${project.name}:${project.version}"] registryCredentials { url = "https://123.dkr.ecr.us-east-1.amazonaws.com/repository" } } ``` the plugin will not use...

The same Docker address. The configuration of the old project can be pushed normally, but the new version cannot be used. ![image](https://github.com/bmuschko/gradle-docker-plugin/assets/33373254/4b8bb803-72a3-429a-944d-9349a8df1228) error log > Task :dockerBuildImage Error during callback...

There are shaded dependencies in gradle-docker-plugin. If in the build gradle script in project there is another gradle plugin or something in buildscript classpath, that uses, for example, docker-java-api, which...

Many enterprise environments no longer support the use of docker, and instead use podman. Running the gradlew dockerBuild action against a private artifactory results in the error - "unable to...