Merge branch '3.1.x'

This commit is contained in:
Moritz Halbritter
2023-08-10 14:55:00 +02:00
7 changed files with 145 additions and 153 deletions

View File

@@ -184,7 +184,7 @@ abstract sealed class DockerCliCommand<R> {
static final class ComposeStart extends DockerCliCommand<Void> {
ComposeStart(LogLevel logLevel) {
super(Type.DOCKER_COMPOSE, logLevel, Void.class, false, "start", "--detach", "--wait");
super(Type.DOCKER_COMPOSE, logLevel, Void.class, false, "start");
}
}