Merge branch '3.1.x'

Closes gh-36910
This commit is contained in:
Moritz Halbritter
2023-08-10 12:21:26 +02:00
2 changed files with 2 additions and 2 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", "--no-color", "--detach", "--wait");
super(Type.DOCKER_COMPOSE, logLevel, Void.class, false, "start", "--detach", "--wait");
}
}