Skip to content

Commit 0ed8711

Browse files
committed
Start multiple, specific containers with ./gradlew :composeUp -P startedServices=mysql,ftgo-consumer-service,ftgo-restaurant-service,ftgo-order-service
1 parent 78ad091 commit 0ed8711

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ task compileAll(type: GradleBuild) {
5757
dockerCompose {
5858
projectName = null
5959
removeOrphans = true
60-
if (project.hasProperty('startedService'))
61-
startedServices= [project.ext.startedService]
60+
if (project.hasProperty('startedServices'))
61+
startedServices= project.ext.startedServices.split(',')
6262

6363
}

0 commit comments

Comments
 (0)