Remove --detach and --wait flags from docker compose start command

Closes gh-36908
This commit is contained in:
Moritz Halbritter
2023-08-10 14:11:36 +02:00
parent 490c6d744c
commit 3bb93b37ca
5 changed files with 138 additions and 49 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");
}
}