Transmode / gradle-docker

A Gradle plugin to build Docker images from the build script.
Apache License 2.0
647 stars 142 forks source link

No group Gradle property results in no Docker #8

Closed aglover closed 10 years ago

aglover commented 10 years ago

If you don't define the group property in your Gradle build, the distDocker command will not be able to actually build a docker. That is, the plugin will try to execute a command like: docker build -t /galoshe /home/vagrant/Dev/galoshe/build/docker -- note the /galoshe results in a docker error: Invalid namespace name (), only [a-z0-9_] are allowed, size between 4 and 30

frvi commented 10 years ago

Fixed. Also, together with #7 it should now be clearer what's going on! :)

aglover commented 10 years ago

@frvi Nice job! Thank you!