Patrick Koenig
Patrick Koenig
I'm not convinced this makes the documentation meaningfully clearer. We already have an example for each of the keys listed here and we're not going to add an example for...
This has been a long standing issue with lots of prior discussion, see https://github.com/palantir/conjure-java/issues/1812.
Fixed in #367
A way to get the desired behavior is the following: ``` docker { name 'sample/demo-gradle-palantir-docker:version' files 'gradlew', 'build.gradle', 'settings.gradle' copySpec.with { from('.') { include 'src/**' into 'src' } from('.') {...
@mahe0924 if your still having an issue, can you please post your gradle-docker configuration and the version of the plugin you are using?
@harshSE Have you verified that you can manually run docker commands without `sudo` (step 4 in the post-installation steps)? Specifically can you try running `docker run hello-world`?
We just need to merge this PR: https://github.com/palantir/gradle-docker/pull/204 I started working on this a while ago but hit some issues with dependency resolution.
This error is caused because your root project does not have a `default` configuration. This configuration is created by the gradle base plugin (for java projects this is usually applied...
It's not clear from this output what caused the task to fail. Can you try running again with the `--stacktrace` option?
You need to apply this plugin on each sub-project individually if you want each sub-project to produce a docker image.