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

Simplifies usage of Docker Compose for integration testing in Gradle environment.

Results 35 gradle-docker-compose-plugin issues
Sort by recently updated
recently updated
newest added

Is there a shared build service name that I can reuse to have multiple subprojects reuse the same docker-compose group of services? It'd be nice to expose it so we...

When we try to run composeBuild on the following docker-compose.yml we get an invalid reference format error ``` version: '3.8' services: rest-api: build: ../../stubs/build/docker environment: wiremock.STUB_HOSTNAME: localhost:8080 ports: - "8080:8080"...

help wanted

currently when `stopContainers=true` it makes `buildBeforeUp` ineffective: ``` > Task :composeUp Cached services infos loaded while 'stopContainers' is set to 'false'. ``` What I'm after is fast integration tests run,...

help wanted

```gradle test { useJUnitPlatform() } dockerCompose.isRequiredBy(test) dockerCompose { captureContainersOutput = true ``` Currently container output capture flows into main Test Results window: ![Снимок экрана 2022-11-30 в 06 21 49](https://user-images.githubusercontent.com/4362564/204699941-8c184066-3d76-4d2b-9419-0b43c64a4e94.png) Regretfully...

enhancement
help wanted