Skip to content

Commit

Permalink
Remove --no-color flag from docker compose start command
Browse files Browse the repository at this point in the history
Closes gh-36908
  • Loading branch information
mhalbritter committed Aug 10, 2023
1 parent 7fea7e1 commit d48aa80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ static final class ComposeDown extends DockerCliCommand<Void> {
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");
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void composeStart() {
DockerCliCommand<?> command = new DockerCliCommand.ComposeStart(LogLevel.INFO);
assertThat(command.getType()).isEqualTo(DockerCliCommand.Type.DOCKER_COMPOSE);
assertThat(command.getLogLevel()).isEqualTo(LogLevel.INFO);
assertThat(command.getCommand()).containsExactly("start", "--no-color", "--detach", "--wait");
assertThat(command.getCommand()).containsExactly("start", "--detach", "--wait");
assertThat(command.deserialize("[]")).isNull();
}

Expand Down

0 comments on commit d48aa80

Please sign in to comment.