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

a Gradle plugin for orchestrating docker builds and pushes.

Results 117 gradle-docker issues
Sort by recently updated
recently updated
newest added

dockerRemoveImage is the only task missing the build-run-stop-remove life-cycle. Please consider adding this task, which simplifies testing images that we know are temporary so we want to discard them immediately....

I added docker plugin to my project (I've already have Spotbugs plugin). After that the build fails with the following error: ``` * What went wrong: Execution failed for task...

## What happened? Reading documentation I don't see options to skip docker build and push if image already exists. ## What did you want to happen? I think it would...

## What happened? When I am including docker task in a custom task, it's not running Code ![image](https://user-images.githubusercontent.com/45970796/64019566-16fb5080-cb4d-11e9-8770-3335ae038764.png) version: 0.20.1 ## What did you want to happen? It should have...

Hi Jenkins pipeline is unable to execute the docker task. It seems docker environment variables (DOCKER_HOST,DOCKER_MACHINE_NAME , DOCKER_CERT_PATH etc) are not being passed on. How to provide this configuration? Regards...

It would be nice if the plugin could optionally support `img` as an alternate executable for running many docker commands. `img` is a standalone, daemon-less, unprivileged Dockerfile and OCI compatible...

I'm using Docker-in-Docker to build my images, so I don't have any cache in the build process. In order to use caching I can only resort to `--cache-from` on an...

## What happened? I stopped the container with `dockerStop` command and then tried to restart it using `dockerRun`. I received an error: `docker: Error response from daemon: Conflict. The container...

The dockerRun command should allow setting memory limits on the container. This should map to the `-m` argument of `docker run`.

## What happened? I have a project which has a miroservice architecture application. It has a root project and has some subprojects in the root project. I set up configurations...