Merge branch '3.3.x'

Closes gh-43472
This commit is contained in:
Moritz Halbritter
2024-12-10 15:43:46 +01:00
4 changed files with 136 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ class DockerCliCommandTests {
void composePs() {
DockerCliCommand<?> command = new DockerCliCommand.ComposePs();
assertThat(command.getType()).isEqualTo(DockerCliCommand.Type.DOCKER_COMPOSE);
assertThat(command.getCommand()).containsExactly("ps", "--format=json");
assertThat(command.getCommand()).containsExactly("ps", "--orphans=false", "--format=json");
assertThat(command.deserialize("[]")).isInstanceOf(List.class);
}