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

When I combine this plugin with [Testcontainers](https://www.testcontainers.org/) to test the built image, Testcontainers runs into an NPE because of deserialization issues. Testcontainer's author has [tracked it down to](https://testcontainers.slack.com/archives/C1SUBPZK6/p1595329713276000?thread_ts=1595256124.253800&cid=C1SUBPZK6) the following:...

enhancement

### Expected Behavior It should pull the image from ironbank ### Current Behavior Unable to authorize against ironbank harbor ### Context Trying to pull a private docker image from ironbank...

question

### Expected Behavior Build succeeds ### Current Behavior Build fails with exception ``` > Task :dockerCreateDockerfile FAILURE: Build failed with an exception. * What went wrong: Receiver class com.bmuschko.gradle.docker.tasks.image.Dockerfile$CopyFile does...

enhancement

When trying to use the gradle configuration cache, depending on the plugins applied and tasks configured various configuration cache problems will prevent builds from succeeding. There are a few main...

enhancement

Fixes a compatibility issue with Gradle 6.9.x Without this builds fail with ``` > Task :dockerCreateDockerfile FAILURE: Build failed with an exception. * What went wrong: Receiver class com.bmuschko.gradle.docker.tasks.image.Dockerfile$CopyFile does...

### Expected Behavior When attempting to commit a container using `DockerCommitImage`, a new image does get created, but does **not** get the correct tag. [`DockerCommitImage`](https://bmuschko.github.io/gradle-docker-plugin/api/com/bmuschko/gradle/docker/tasks/image/DockerCommitImage.html) seems to ignore the [`image`](https://bmuschko.github.io/gradle-docker-plugin/api/com/bmuschko/gradle/docker/tasks/image/DockerCommitImage.html#image)...

bug

The functionality required introducing a breaking change. For more information, see https://github.com/bmuschko/gradle-docker-plugin/issues/1098.

enhancement

### Expected Behavior Plugin should allow inserting `RUN` instructions into the `Dockerfile` before it inserts `COPY libs, resources, classes` instructions to allow user executing commands like `apt-get install` that are...

enhancement

I would like to extend the creationg of the Spring boot docker file to add volumes so I can have a volume in the image. ``` docker { springBootApplication {...

duplicate
enhancement

The gradle docker plugin with podman-system-service may randomly fail with a broken pipe error. I believe this is because the [caching the docker client](https://github.com/bmuschko/gradle-docker-plugin/blob/master/src/main/java/com/bmuschko/gradle/docker/internal/services/DockerClientService.java#L106) will not support the ephemeral podman-system-service...