Releases: avast/gradle-docker-compose-plugin
Releases · avast/gradle-docker-compose-plugin
Allow to specify path to docker-compose executable
Merge pull request #59 from Kazaag/master Allow to specify location of the docker-compose executable
Fix docker-compose version reading
0.3.19 fix version reading
Custom project name
Allows to set -p
option of docker-compose
command.
Improved services listing
If using Docker Compose 1.6.0+(one year old) then docker-compose config --services
command is used for services names listing.
Otherwise, standard Docker Compose files are manually searched in parent directories as well (as docker-compose does).
Pull task
Publishing to Gradle Portal fixed
0.3.15 Merge branch 'PublishToPluginPortal'
Plugin added to Gradle Portal
Merge pull request #49 from avast/PublishToPluginPortal Publish to plugin portal
Allow to capture output of containers
Merge pull request #46 from avast/CaptureContainerOutput Optionally capture output of all containers and send it to Gradle output
Execute compilation before Docker Compose
If isRequiredBy
is invoked then the plugin ensures (using shouldRunBefore
) that compilation tasks are executed before composeUp
. This solves #38 when composeUp
task is executed even if the compilation failed.
Correct waiting for ports on Mac and Windows
The Docker for Windows/Mac opens exposed TCP ports immediately so the naive waiting for open port didn't work correctly. This release fixes this issue.